:root {
  --navy: #0d2f3a;
  --navy-2: #153f4a;
  --teal: #0f6c68;
  --teal-dark: #095650;
  --teal-soft: #dff2ed;
  --aqua: #a8ddd2;
  --coral: #c6483f;
  --coral-dark: #a93631;
  --amber: #f3bd62;
  --cream: #fbfaf6;
  --paper: #ffffff;
  --mist: #f1f6f4;
  --ink: #15333b;
  --muted: #5e7378;
  --line: #dbe6e3;
  --danger: #a83a35;
  --success: #176a4e;
  --shadow-sm: 0 10px 30px rgba(20, 60, 65, 0.08);
  --shadow-md: 0 24px 60px rgba(13, 47, 58, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Aptos", "Segoe UI", "Noto Sans Bengali", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

::selection {
  color: var(--paper);
  background: var(--teal);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section-sm {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-white {
  background: var(--paper);
}

.section-mist {
  background: var(--mist);
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy);
}

.section-dark::before {
  position: absolute;
  width: 460px;
  height: 460px;
  top: -280px;
  right: -130px;
  content: "";
  background: rgba(168, 221, 210, 0.12);
  border-radius: 50%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-dark .eyebrow {
  color: var(--aqua);
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.7rem, 6.5vw, 5.7rem);
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--paper);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.section-dark .lead {
  color: #d2e1df;
}

.text-muted {
  color: var(--muted);
}

.text-small {
  font-size: 0.9rem;
}

.text-bn {
  font-family: "Noto Sans Bengali", "Vrinda", "Segoe UI", sans-serif;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--coral);
  border-radius: 50%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(239, 106, 91, 0.22);
}

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

.button-secondary {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--teal);
}

.button-dark {
  color: var(--paper);
  background: var(--navy);
}

.button-ghost {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button-block {
  width: 100%;
}

.button[aria-disabled="true"],
.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.announcement {
  padding: 0.48rem 1rem;
  color: #dceceb;
  background: var(--navy);
  font-size: 0.82rem;
  text-align: center;
}

.announcement a {
  color: var(--paper);
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(219, 230, 227, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 15px 15px 15px 5px;
  font-size: 0.92rem;
  letter-spacing: -0.05em;
}

.brand-copy span {
  display: block;
}

.brand-copy small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav > a:not(.button) {
  padding: 0.65rem 0.72rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"]:not(.button) {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.site-nav .button {
  min-height: 44px;
  margin-left: 0.45rem;
  padding-inline: 1rem;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.hero::before {
  position: absolute;
  z-index: -1;
  width: 680px;
  height: 680px;
  top: -360px;
  right: -220px;
  content: "";
  background: radial-gradient(circle, rgba(168, 221, 210, 0.62), rgba(168, 221, 210, 0));
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.hero-copy h1 em {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-copy .lead {
  max-width: 660px;
  margin-bottom: 1.65rem;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.credentials li {
  padding: 0.38rem 0.72rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 750;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 600px;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-note .icon {
  margin-top: 0.25rem;
  color: var(--teal);
}

.portrait-wrap {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.89;
  background: #d9e8e7;
  border: 9px solid var(--paper);
  border-radius: 48% 48% 24px 24px;
  box-shadow: var(--shadow-md);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 70%, rgba(13, 47, 58, 0.13));
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 35%;
}

.portrait-badge {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: 42px;
  display: flex;
  max-width: 230px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  color: var(--paper);
  background: var(--navy);
  border: 5px solid var(--cream);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.35;
}

.portrait-badge-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--amber);
  border-radius: 12px;
}

.portrait-badge .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.portrait-scribble {
  position: absolute;
  z-index: -1;
  width: 130px;
  height: 130px;
  top: -20px;
  left: -30px;
  border: 2px dashed var(--coral);
  border-radius: 50%;
  opacity: 0.5;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  padding: 1rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon,
.feature-icon,
.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 14px;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.3;
}

.trust-item small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-heading > div:first-child {
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link .icon {
  transition: transform 160ms ease;
}

.text-link:hover .icon {
  transform: translateX(3px);
}

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

.feature-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 100%;
  padding: 1.55rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
  margin-bottom: 1.25rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.schedule-layout {
  display: grid;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.schedule-copy {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.schedule-copy .lead {
  margin-bottom: 1.6rem;
}

.location-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.location-line .icon {
  margin-top: 0.22rem;
  color: var(--amber);
}

.location-line strong,
.location-line span {
  display: block;
}

.location-line span {
  margin-top: 0.15rem;
  color: #c6d9d7;
  font-size: 0.9rem;
}

.schedule-card {
  align-self: center;
  padding: clamp(1.15rem, 3vw, 2rem);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.schedule-topline h3 {
  margin-bottom: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  color: var(--success);
  background: #e3f4ec;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.schedule-list {
  margin: 0 0 1.25rem;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.schedule-list li {
  display: grid;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.3rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 86px 1fr;
}

.schedule-list strong {
  color: var(--navy);
}

.schedule-list time {
  color: var(--muted);
  font-weight: 650;
}

.schedule-list .dual-time {
  display: grid;
  gap: 0.12rem;
}

.schedule-note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
}

.article-card {
  position: relative;
  display: flex;
  min-height: 370px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.article-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 47, 58, 0.02) 10%, rgba(13, 47, 58, 0.92) 92%);
}

.article-card img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.article-card:hover img {
  transform: scale(1.035);
}

.article-card > *:not(img) {
  position: relative;
  z-index: 1;
}

.article-card h3 {
  max-width: 540px;
  margin: 0.65rem 0 0;
  color: var(--paper);
}

.article-card-featured h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.article-card-plain {
  justify-content: space-between;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.article-card-plain::before {
  display: none;
}

.article-card-plain h3 {
  color: var(--navy);
}

.article-card-plain p {
  color: var(--muted);
}

.article-card-plain .article-card-top {
  position: relative;
  z-index: 1;
}

.article-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy);
  background: var(--teal-soft);
  border-radius: 14px;
}

.app-promo {
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--paper);
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr 0.75fr;
}

.app-promo h2 {
  color: var(--paper);
}

.app-promo p {
  color: #d6e7e4;
}

.phone-stage {
  position: relative;
  min-height: 390px;
}

.phone-mockup {
  position: absolute;
  width: 210px;
  height: 420px;
  top: 8px;
  right: 20%;
  padding: 12px;
  background: #071d25;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 36px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(5deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 2.8rem 1rem 1rem;
  color: var(--ink);
  background: var(--cream);
  border-radius: 25px;
}

.phone-screen::before {
  position: absolute;
  width: 70px;
  height: 18px;
  top: 10px;
  left: 50%;
  content: "";
  background: #071d25;
  border-radius: 999px;
  transform: translateX(-50%);
}

.app-mini-logo {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 17px;
  font-weight: 900;
}

.app-mini-card {
  margin-top: 0.7rem;
  padding: 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 0.72rem;
  line-height: 1.45;
}

.app-mini-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.faq-item summary {
  position: relative;
  padding: 1.15rem 3.5rem 1.15rem 1.25rem;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  right: 1rem;
  display: grid;
  content: "+";
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 9px;
  font-size: 1.15rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 900px;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--paper);
  background: var(--navy);
}

.page-hero::after {
  position: absolute;
  width: min(44vw, 580px);
  aspect-ratio: 1;
  right: -12vw;
  bottom: -70%;
  content: "";
  background: rgba(168, 221, 210, 0.12);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 1rem;
  color: var(--paper);
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-hero .lead {
  max-width: 760px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  color: #c7d9d7;
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: var(--paper);
}

.breadcrumbs span:not(:last-child)::after {
  margin-left: 0.45rem;
  content: "/";
  opacity: 0.55;
}

.booking-layout {
  display: grid;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.booking-sidebar {
  display: grid;
  gap: 1rem;
}

.info-card,
.form-card,
.content-card,
.notice-card,
.app-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-card,
.notice-card,
.content-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.info-card h2,
.info-card h3 {
  margin-bottom: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li,
.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover strong {
  color: var(--teal);
}

.contact-list .contact-icon {
  width: 40px;
  height: 40px;
}

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

.contact-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.emergency-card {
  color: #722d2a;
  background: #fff1ef;
  border-color: #f3c6c1;
  box-shadow: none;
}

.emergency-card h3 {
  color: #722d2a;
}

.form-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.form-card-header {
  margin-bottom: 1.6rem;
}

.form-card-header h2 {
  margin-bottom: 0.45rem;
}

.form-card-header p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.form-field {
  display: grid;
  gap: 0.38rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.field-label {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 780;
}

.required {
  color: var(--coral-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.72rem 0.85rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #c9d9d5;
  border-radius: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 108, 104, 0.12);
  outline: 0;
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-block: 0.4rem;
}

.checkbox-field input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  accent-color: var(--teal);
}

.checkbox-field label {
  color: var(--muted);
  font-size: 0.86rem;
}

.form-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.error {
  color: var(--danger);
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  display: grid;
  align-items: start;
  gap: 0.9rem;
  grid-template-columns: 42px 1fr;
}

.steps li::before {
  display: grid;
  width: 42px;
  height: 42px;
  content: counter(steps);
  counter-increment: steps;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 14px;
  font-weight: 850;
}

.steps strong {
  display: block;
  color: var(--navy);
}

.steps span {
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}

.guide-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.guide-card-image {
  overflow: hidden;
  aspect-ratio: 1.5;
  background: var(--mist);
}

.guide-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.guide-card:hover .guide-card-image img {
  transform: scale(1.035);
}

.guide-card-body {
  padding: 1.3rem;
}

.guide-card-body h2,
.guide-card-body h3 {
  margin: 0.65rem 0;
}

.guide-card-body p {
  color: var(--muted);
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.topic-chip {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.55rem 0.85rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 720;
}

.article-shell {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) 270px;
}

.article-content {
  min-width: 0;
}

.article-content > p:first-of-type {
  color: var(--ink);
  font-size: 1.16rem;
}

.article-content h2 {
  margin-top: 2.7rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.article-content h3 {
  margin-top: 1.8rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.35rem;
}

.article-content li + li {
  margin-top: 0.45rem;
}

.article-content a {
  color: var(--teal-dark);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.2rem;
  color: #c9d9d7;
  font-size: 0.86rem;
}

.article-figure {
  margin: 2rem 0;
}

.article-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.article-figure figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.callout {
  margin-block: 1.7rem;
  padding: 1.2rem 1.25rem;
  background: var(--teal-soft);
  border-left: 5px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.callout-danger {
  color: #722d2a;
  background: #fff0ee;
  border-left-color: var(--coral);
}

.callout h3 {
  margin-bottom: 0.5rem;
  color: inherit;
}

.callout p:last-child,
.callout ul:last-child {
  margin-bottom: 0;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 1rem;
}

.toc {
  padding: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.toc strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--navy);
}

.toc ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
}

.toc a:hover {
  color: var(--teal-dark);
}

.author-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  background: var(--navy);
  border-radius: var(--radius-md);
}

.author-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center 25%;
  border: 3px solid var(--paper);
  border-radius: 50%;
}

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

.author-card strong {
  color: var(--paper);
}

.author-card span {
  margin-top: 0.15rem;
  color: #c8d9d7;
  font-size: 0.78rem;
}

.author-card .text-link {
  color: var(--aqua);
  font-size: 0.83rem;
}

.red-flags {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.red-flags li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.56);
  border-radius: 10px;
}

.red-flags li::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 0.45rem;
  content: "";
  background: var(--coral-dark);
  border-radius: 50%;
}

.app-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
}

.app-card {
  display: grid;
  align-items: center;
  gap: 1.4rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  grid-template-columns: 96px 1fr;
}

.app-icon-large {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 27px;
  box-shadow: 0 14px 30px rgba(15, 108, 104, 0.2);
  font-size: 1.3rem;
  font-weight: 900;
}

.app-card p {
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  width: 2px;
  top: 12px;
  bottom: 12px;
  left: 16px;
  content: "";
  background: var(--line);
}

.timeline li {
  position: relative;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 34px 1fr;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  background: var(--teal-soft);
  border: 8px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--teal);
}

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

.timeline span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-dark .timeline strong {
  color: var(--paper);
}

.section-dark .timeline span {
  color: #c8d9d7;
}

.not-found-hero {
  display: grid;
  min-height: 70vh;
  align-items: center;
}

.about-grid {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.about-photo {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: center 35%;
  border: 8px solid var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.practice-overview-heading {
  align-items: end;
  margin-bottom: 1.35rem;
}

.practice-overview {
  overflow: hidden;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.practice-overview a,
.practice-overview picture {
  display: block;
}

.practice-overview a:focus-visible {
  outline: 4px solid var(--coral);
  outline-offset: -4px;
}

.practice-overview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.practice-overview figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.credential-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  grid-template-columns: 40px 1fr;
}

.credential-list .feature-icon {
  width: 40px;
  height: 40px;
}

.credential-list strong,
.credential-list span {
  display: block;
}

.credential-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--paper);
  background: var(--teal);
  border-radius: var(--radius-lg);
}

.cta-band::after {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -180px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

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

.cta-band h2 {
  max-width: 680px;
  margin-bottom: 0.5rem;
  color: var(--paper);
}

.cta-band p {
  margin-bottom: 0;
  color: #d9efeb;
}

.site-footer {
  padding: 4rem 0 1.2rem;
  color: #c8d9d7;
  background: #08252e;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
}

.footer-brand .brand {
  color: var(--paper);
}

.footer-brand .brand-copy small {
  color: #a9c1be;
}

.footer-brand p {
  max-width: 380px;
  margin: 1rem 0;
  color: #adc3c0;
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 0.85rem;
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 820;
  letter-spacing: 0.02em;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #b9cecb;
  font-size: 0.87rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #93aeab;
  font-size: 0.76rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.mobile-actions {
  display: none;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 18px;
  bottom: 18px;
  max-width: min(380px, calc(100% - 36px));
  padding: 0.9rem 1rem;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.86rem;
  transform: translateY(calc(100% + 40px));
  transition: transform 220ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1020px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    inset: calc(var(--header-height) + 1px) 0 auto;
    display: grid;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem 20px 1.4rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    pointer-events: none;
    transform: translateY(-130%);
    transition: transform 220ms ease;
    visibility: hidden;
  }

  .site-nav.is-open {
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav > a:not(.button) {
    min-height: 48px;
    padding: 0.8rem 1rem;
  }

  .site-nav .button {
    margin: 0.4rem 0 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-card-featured {
    grid-column: 1 / -1;
  }

  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--container));
  }

  body {
    padding-bottom: 70px;
  }

  .announcement {
    font-size: 0.74rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 2.7rem;
  }

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

  .hero-copy {
    text-align: left;
  }

  .portrait-wrap {
    width: min(100%, 460px);
  }

  .portrait-badge {
    right: -4px;
    bottom: 22px;
  }

  .trust-strip {
    padding: 0.7rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .text-link {
    margin-top: 1rem;
  }

  .feature-grid,
  .feature-grid-three,
  .article-grid,
  .guide-grid,
  .app-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-card-featured {
    grid-column: auto;
  }

  .article-card {
    min-height: 330px;
  }

  .article-card-plain {
    min-height: 250px;
  }

  .phone-stage {
    min-height: 350px;
  }

  .phone-mockup {
    right: 50%;
    transform: translateX(50%) rotate(4deg) scale(0.88);
    transform-origin: top center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

  .app-card {
    align-items: start;
    grid-template-columns: 74px 1fr;
  }

  .app-icon-large {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    font-size: 1rem;
  }

  .about-photo {
    position: static;
    max-width: 480px;
    margin-inline: auto;
  }

  .practice-overview {
    border-radius: var(--radius-sm);
  }

  .cta-band-inner,
  .footer-bottom {
    display: grid;
  }

  .mobile-actions {
    position: fixed;
    z-index: 120;
    inset: auto 0 0;
    display: grid;
    height: 70px;
    padding: 8px 12px;
    background: rgba(251, 250, 246, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(13, 47, 58, 0.12);
    grid-template-columns: 0.72fr 1.28fr;
    gap: 8px;
    backdrop-filter: blur(12px);
  }

  .mobile-actions .button {
    min-height: 52px;
    padding-inline: 0.7rem;
    font-size: 0.84rem;
  }

  .toast {
    bottom: 86px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.45rem;
  }

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

  .portrait-badge {
    max-width: 190px;
    font-size: 0.7rem;
  }

  .schedule-list li {
    grid-template-columns: 70px 1fr;
  }

  .app-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .announcement,
  .site-header,
  .mobile-actions,
  .site-footer,
  .article-aside,
  .button-row,
  .toast {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .section-sm,
  .page-hero {
    padding-block: 1.5rem;
  }

  .page-hero {
    color: #000;
    background: #fff;
  }

  .page-hero h1,
  .page-hero .lead {
    color: #000;
  }

  a {
    text-decoration: none;
  }
}
