:root {
  --ink: #0b2035;
  --muted: #66717c;
  --soft: #fbf6ed;
  --white: #fffdf8;
  --navy: #071f36;
  --teal: #a87c37;
  --gold: #c79a4a;
  --gold-soft: #f7ead4;
  --line: #eadcc3;
  --line-dark: rgba(247, 234, 212, 0.24);
  --shadow: 0 18px 46px rgba(7, 31, 54, 0.08);
  --display: Georgia, "Times New Roman", serif;
  --body: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--navy);
  font-family: var(--body);
  line-height: 1.6;
}

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

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

[id] {
  scroll-margin-top: 92px;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.has-reveal .reveal-item {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 460ms ease,
    transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-reveal .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 82px;
  padding: 0 clamp(20px, 6vw, 92px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.97);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 48px;
  background: transparent;
  overflow: visible;
}

.brand-logo,
.hero-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform-origin: center;
}

.brand-logo {
  transform: scale(1.9);
}

.hero-logo-image {
  transform: scale(1.9);
}

.brand-text {
  white-space: nowrap;
  color: var(--navy);
  font-size: 15px;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.site-footer a {
  transition: color 160ms ease;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-action,
.button,
.contact-form button,
.newsletter-form button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
}

.header-action,
.button,
.contact-form button,
.newsletter-form button {
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.header-action:hover,
.button:hover,
.contact-form button:hover,
.newsletter-form button:hover {
  transform: translateY(-2px);
}

.header-action {
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(199, 154, 74, 0.34);
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #fffaf2;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04) brightness(0.94);
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background: rgba(7, 31, 54, 0.68);
}

.hero-content {
  width: min(100%, 760px);
  padding: clamp(76px, 10vw, 118px) clamp(20px, 7vw, 104px);
  color: var(--white);
  animation: hero-reveal 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-logo-lockup {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(14px, 3vw, 24px);
}

.hero-logo-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(102px, 11vw, 128px);
  height: clamp(78px, 8vw, 102px);
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  transform: translateY(-14px);
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 86px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--navy);
  background: var(--white);
}

.button.primary:hover {
  background: var(--gold-soft);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(199, 154, 74, 0.78);
  background: rgba(7, 31, 54, 0.18);
}

.button.secondary:hover {
  background: rgba(247, 234, 212, 0.12);
  border-color: var(--gold);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(20px, 7vw, 104px);
  border-bottom: 1px solid var(--line);
  background: #fff6e7;
}

.metric {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.metric:first-child {
  padding-left: 0;
}

.metric:last-child {
  border-right: 0;
  padding-right: 0;
}

.metric span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
}

.metric strong {
  font-size: 17px;
  line-height: 1.25;
}

.section,
.split-section,
.contact-section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 7vw, 104px);
}

.section {
  background: #fffaf2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.contact-section p {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 230px;
  padding: clamp(24px, 4vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 154, 74, 0.55);
  box-shadow: 0 18px 40px rgba(7, 31, 54, 0.1);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--navy);
  background: var(--gold-soft);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 8vw, 92px);
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

.split-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.process-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.process-list div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: var(--gold-soft);
  font-weight: 800;
}

.process-list p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.cabinet-section {
  background: #fbf2e4;
}

.advisor-card {
  max-width: 780px;
  margin: 34px 0 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  background: #fffdf8;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.advisor-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 42px);
}

.advisor-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.journey-grid article {
  min-height: 178px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.journey-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 154, 74, 0.55);
  box-shadow: 0 16px 34px rgba(7, 31, 54, 0.08);
}

.journey-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.values p {
  min-height: 112px;
  display: grid;
  align-items: end;
  margin: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
  font-weight: 800;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.values p:hover {
  transform: translateY(-4px);
  color: var(--navy);
  background: var(--gold-soft);
}

.team-section {
  background: #fffaf2;
}

.team-heading {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.team-heading h2,
.team-heading p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.team-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffdf8;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 154, 74, 0.58);
  box-shadow: 0 22px 46px rgba(7, 31, 54, 0.12);
}

.team-photo-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy);
}

.team-photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.team-card:hover .team-photo-link img {
  transform: scale(1.035);
}

.team-card-copy {
  display: flex;
  height: 100%;
  padding: 26px;
  flex-direction: column;
  align-items: flex-start;
}

.team-card-copy .eyebrow {
  width: 100%;
  min-height: 34px;
  margin-bottom: 10px;
  text-align: center;
}

.team-card-copy h3 {
  width: 100%;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 36px);
  text-align: center;
}

.team-card-copy > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
}

.team-card-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--gold);
  color: var(--navy);
  background: var(--gold-soft);
  font-size: 14px;
  font-weight: 850;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.team-card-link:hover {
  color: var(--white);
  background: var(--navy);
}

.team-card-link span {
  font-size: 20px;
  line-height: 1;
}

.video-section {
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.video-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.video-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line-dark);
  background: #09243f;
  transition:
    transform 190ms ease,
    border-color 190ms ease,
    box-shadow 190ms ease;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 154, 74, 0.72);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.video-card:hover .video-play {
  transform: scale(1.08);
}

.video-card-large {
  grid-column: span 2;
}

.video-preview {
  position: relative;
  min-height: 0;
  height: 192px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background: #061a2f;
}

.video-card-large .video-preview {
  height: 280px;
}

.video-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(247, 234, 212, 0.18);
}

.video-play {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(199, 154, 74, 0.72);
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition: transform 190ms ease;
}

.video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--navy);
  transform: translate(-40%, -50%);
}

.video-number {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

.video-copy {
  padding: 24px;
}

.video-copy h3 {
  max-width: 440px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.video-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.news-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
  background: #fff6e7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-layout {
  min-width: 0;
}

.news-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.news-topics article {
  min-height: 170px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.news-topics article:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 154, 74, 0.55);
  box-shadow: 0 16px 34px rgba(7, 31, 54, 0.08);
}

.news-topics span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-topics p {
  margin: 0;
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  background: #fffdf8;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.newsletter-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(7, 31, 54, 0.12);
}

.newsletter-form h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
}

.newsletter-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fffdf8;
}

.newsletter-form input[type="email"]:focus {
  outline: 3px solid rgba(197, 154, 82, 0.2);
  border-color: var(--gold);
}

.consent-row {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.newsletter-form button {
  width: 100%;
  border: 0;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #0c304f;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(480px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
  background: #fffaf2;
  border-top: 1px solid var(--line);
}

.appointment-copy {
  position: sticky;
  top: 104px;
}

.appointment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.appointment-meta span,
.slot-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
}

.appointment-board {
  display: grid;
  gap: 18px;
}

.appointment-picker {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: 18px;
  align-items: start;
}

.availability-panel,
.calendar-panel,
.contact-form {
  border: 1px solid var(--line);
  background: #fffdf8;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.calendar-panel:hover,
.availability-panel:hover,
.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(7, 31, 54, 0.12);
}

.availability-panel,
.calendar-panel {
  padding: clamp(22px, 4vw, 32px);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}

.availability-panel .panel-heading {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.panel-heading h3 {
  margin-bottom: 0;
}

.slot-count {
  flex: 0 0 auto;
  color: var(--navy);
  background: var(--gold-soft);
}

.calendar-controls {
  display: inline-flex;
  gap: 6px;
}

.calendar-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: #fffdf8;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.calendar-controls button:disabled {
  color: #a8b2ba;
  background: var(--soft);
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  gap: 4px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  gap: 4px;
}

.calendar-spacer {
  min-height: 38px;
}

.calendar-day {
  position: relative;
  min-width: 0;
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fffdf8;
  font: inherit;
  cursor: default;
}

.calendar-day span {
  font-weight: 800;
}

.calendar-day small {
  position: absolute;
  right: 4px;
  bottom: 3px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
}

.calendar-day.has-slots {
  color: var(--ink);
  background: #fffaf1;
  cursor: pointer;
}

.calendar-day.has-slots:hover,
.calendar-day[aria-selected="true"] {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--gold-soft);
}

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

.slot-button {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  text-align: left;
  background: #fffdf8;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.slot-button strong {
  font-size: 14px;
  line-height: 1.25;
}

.slot-button span {
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.slot-button:hover,
.slot-button[aria-selected="true"] {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--gold-soft);
}

.empty-slots {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fffdf8;
}

.contact-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--gold) 50%, transparent 50%) calc(100% - 13px) 50% / 7px 7px no-repeat,
    #fffdf8;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(197, 154, 82, 0.2);
  border-color: var(--gold);
}

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

.booking-summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid #e6d1aa;
  color: var(--navy);
  background: var(--gold-soft);
  font-weight: 800;
}

.contact-form button {
  width: 100%;
  border: 0;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
}

.contact-form button:hover {
  background: #0c304f;
}

.status-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 7vw, 104px);
  padding-right: clamp(210px, 18vw, 260px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  color: #ffffff;
  background: #177a4b;
  box-shadow: 0 14px 34px rgba(7, 31, 54, 0.24);
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  background: #11673e;
  box-shadow: 0 18px 42px rgba(7, 31, 54, 0.3);
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(199, 154, 74, 0.55);
  outline-offset: 3px;
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

  .has-reveal .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .split-section,
  .news-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .appointment-picker {
    grid-template-columns: 1fr;
  }

  .appointment-copy {
    position: static;
  }

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

  .news-topics {
    grid-template-columns: 1fr;
  }

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

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

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

  .video-card-large {
    grid-column: auto;
  }

  .video-card-large .video-preview {
    height: 192px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 66px;
    padding: 0 14px;
  }

  .brand-text {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-overlay {
    background: rgba(7, 31, 54, 0.72);
  }

  .hero-content {
    padding: 74px 20px 54px;
  }

  .hero-logo-lockup {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .hero-logo-mark {
    width: 78px;
    height: 62px;
    flex-basis: auto;
    transform: translateY(-8px);
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    padding: 28px 20px 88px;
  }

  .whatsapp-button {
    right: 14px;
    bottom: 14px;
    width: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-button span {
    display: none;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .service-grid,
  .values,
  .journey-grid,
  .team-grid,
  .news-topics,
  .video-grid,
  .slot-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    max-width: 420px;
    gap: 18px;
  }

  .team-card-copy {
    align-items: center;
    padding: 24px 20px;
    text-align: center;
  }

  .team-card-copy .eyebrow {
    min-height: 0;
  }

  .metric {
    justify-content: center;
    min-height: 86px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .panel-heading {
    align-items: stretch;
    flex-direction: column;
  }
}
