:root {
  --blue: #1d378e;
  --blue-deep: #152868;
  --blue-soft: #2a4cb3;
  --gold: #ffbf00;
  --gold-deep: #e0a800;
  --paper: #f7f5ef;
  --paper-strong: #fffdf8;
  --ink: #1a2340;
  --muted: #4a5370;
  --background: #e8ebf4;
  --line: rgba(29, 55, 142, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 191, 0, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 82%, rgba(29, 55, 142, 0.12), transparent 26rem),
    var(--background);
  font-family: "Source Sans 3", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(26, 35, 64, 0.18);
}

.header-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 52px);
  padding: 10px 0 12px;
}

.header-logo {
  display: block;
  flex: 0 0 auto;
  width: 104px;
  line-height: 0;
  animation: nav-subbar-arrive 0.55s ease-out backwards;
}

.header-logo img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--gold);
  border-radius: 8px;
}

.site-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation a {
  position: relative;
  display: block;
  padding: 16px 0;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-navigation > ul > li > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-navigation > ul > li > a:hover::after,
.site-navigation > ul > li > a:focus-visible::after,
.site-navigation > ul > li > a.active::after {
  transform: scaleX(1);
}

.site-navigation > ul > li > a.active {
  color: #fff;
}

.has-dropdown {
  position: relative;
}

.site-navigation .nav-dropdown {
  position: static;
  z-index: 120;
  min-width: 0;
  margin: 0;
  padding: 6px 10px 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 4px;
  background: var(--blue-soft);
  background: color-mix(in srgb, var(--gold) 22%, var(--blue));
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: none;
}

@media (min-width: 861px) {
  .site-navigation > ul {
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: end;
    column-gap: clamp(18px, 2.4vw, 36px);
    row-gap: 0;
  }

  .site-navigation > ul > li:nth-child(1) { grid-column: 1; grid-row: 1; }
  .site-navigation > ul > li:nth-child(2) { grid-column: 2; grid-row: 1; }
  .site-navigation > ul > li:nth-child(4) { grid-column: 4; grid-row: 1; }
  .site-navigation > ul > li:nth-child(5) { grid-column: 5; grid-row: 1; }

  .has-dropdown {
    display: contents;
  }

  .site-navigation .has-dropdown > a {
    grid-column: 3;
    grid-row: 1;
    z-index: 2;
    padding: 14px 18px 12px;
    color: var(--blue);
    background: var(--gold);
    border: 1px solid var(--gold);
    border-bottom-color: color-mix(in srgb, var(--gold) 22%, var(--blue));
    border-radius: 8px 8px 0 0;
    margin-bottom: -1px;
  }

  .site-navigation .has-dropdown > a::after {
    content: none;
  }

  .site-navigation .has-dropdown > a.active {
    color: var(--blue-deep);
  }

  .site-navigation .nav-dropdown {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    min-width: min(720px, 100%);
    padding: 8px 16px 10px;
    border-radius: 8px;
    animation: nav-subbar-arrive 0.55s ease-out 0.12s backwards;
  }
}

@keyframes nav-subbar-arrive {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

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

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  padding: 8px 14px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: none;
  white-space: nowrap;
  border-radius: 6px;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--blue);
  background: var(--gold);
}

#our-services,
#tailored-to-your-needs,
#our-approach,
#why-wanola,
#who-we-support {
  scroll-margin-top: 168px;
}

.menu-toggle {
  display: none;
}

.hero-band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 42vw, 460px);
  overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: translateX(6%);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(21, 40, 104, 0.28) 0%, rgba(21, 40, 104, 0.58) 100%),
    rgba(21, 40, 104, 0.22);
  z-index: 1;
}

.brand-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(860px, 92vw);
  padding: clamp(36px, 6vw, 64px) 20px;
  text-align: center;
}

.brand-tagline {
  animation: brand-tagline-slide 1s ease-out 0.18s both;
}

.brand-title {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-shadow: 0 8px 24px rgba(21, 40, 104, 0.35);
}

.brand-motto {
  margin: 12px 0 0;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 6px 18px rgba(21, 40, 104, 0.35);
}

@keyframes logo-arrival {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }

  55% {
    opacity: 1;
    transform: translateY(-12px);
  }

  78% {
    transform: translateY(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brand-tagline-slide {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes image-slide-in {
  from {
    opacity: 0;
    transform: translateX(-56px);
  }

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

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

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

.home-intro,
.booking-section,
.services-intro,
.page-section:first-child {
  animation: content-arrival 0.9s ease-out 0.18s both;
}

.home-services,
.home-expertise,
.services-list-section,
.about-purpose {
  animation: content-arrival 0.9s ease-out 0.38s both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
.section-heading h2,
.services-cta h2,
.confirmation-dialog h2 {
  margin: 0;
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.section-heading h2,
.services-cta h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.divider {
  width: 72px;
  height: 3px;
  margin: 22px auto 24px;
  background: var(--gold);
}

.page-main,
.services-main,
.booking-main {
  flex: 1;
  padding: clamp(36px, 6vw, 72px) 20px clamp(70px, 9vw, 110px);
}

.home-main {
  flex: 1;
  padding: 0;
}

.home-icon-bar {
  margin: 0;
  padding: 18px 20px 14px;
  overflow: hidden;
  background: var(--gold);
}

.home-icon-bar-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.home-icon-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 108px;
  padding: 4px 2px 8px;
  color: var(--blue);
  text-decoration: none;
}

.home-icon-link .why-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  background: var(--blue);
  border-color: var(--blue-deep);
  animation: icon-roll-in 0.9s cubic-bezier(0.22, 0.82, 0.22, 1) backwards;
  animation-delay: inherit;
  transition: transform 180ms ease, background-color 180ms ease;
}

.home-icon-link .why-icon svg {
  width: 26px;
  height: 26px;
}

.home-icon-label {
  max-width: 108px;
  margin-top: 8px;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-icon-link:hover .why-icon,
.home-icon-link:focus-visible .why-icon {
  transform: translateY(-3px);
  background: var(--blue-deep);
}

.home-icon-link:hover .home-icon-label,
.home-icon-link:focus-visible .home-icon-label {
  opacity: 1;
  transform: translateY(0);
}

@keyframes icon-roll-in {
  from {
    opacity: 0;
    transform: translateX(88px) rotate(360deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

.home-band {
  padding: clamp(56px, 7vw, 88px) 20px;
}

.home-band-intro {
  background: transparent;
  padding-bottom: 22px;
}

.home-band-image {
  padding-top: 0;
  padding-bottom: 0;
}

.home-band-expertise {
  background: rgba(255, 253, 248, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-band-services {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 191, 0, 0.1), transparent 22rem),
    rgba(29, 55, 142, 0.06);
}

.home-band-why {
  background: rgba(255, 253, 248, 0.72);
  border-top: 1px solid var(--line);
}

.home-band-why .why-section {
  margin-top: 0;
}

.home-band-cta {
  padding-top: clamp(28px, 4vw, 40px);
  padding-bottom: clamp(70px, 9vw, 110px);
}

.home-band-cta .consultation-banner {
  margin-top: 0;
}

.home-section,
.page-section,
.services-intro,
.services-list-section,
.services-cta,
.booking-section,
.booking-support {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-section + .page-section,
.services-list-section,
.tailored-section,
.approach-section,
.why-section,
.who-section,
.booking-support {
  margin-top: clamp(64px, 8vw, 100px);
}

.home-intro .home-copy-panel,
.home-expertise .home-copy-panel,
.about-main .home-copy-panel,
.services-main .home-copy-panel {
  max-width: none;
}

.about-feature-image {
  margin-top: 22px;
}

.about-feature-image + .page-section {
  margin-top: clamp(36px, 5vw, 56px);
}

.services-feature-image {
  margin-top: 22px;
}

.services-feature-image + .services-list-section {
  margin-top: clamp(36px, 5vw, 56px);
}

.home-feature-image {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(26, 35, 64, 0.08);
  animation: image-slide-in 1.05s ease-out both;
}

.home-feature-image img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 40%;
}

.home-copy-panel,
.booking-form-card,
.home-service-card,
.purpose-card,
.numbered-service,
.approach-card,
.why-card,
.contact-info-card,
.construction-card {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(26, 35, 64, 0.08);
}

.home-copy-panel,
.home-service-card,
.purpose-card,
.numbered-service,
.approach-card,
.why-card,
.contact-info-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-copy-panel:hover,
.home-service-card:hover,
.purpose-card:hover,
.numbered-service:hover,
.approach-card:hover,
.why-card:hover,
.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 22px 44px rgba(21, 40, 104, 0.16);
}

.home-copy-panel {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px);
  text-align: center;
}

.home-copy-panel p,
.about-copy p,
.contact-info-card p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.75;
}

.home-copy-panel p:last-of-type,
.about-copy p:last-of-type,
.contact-info-card p:last-of-type {
  margin-bottom: 0;
}

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

.home-journey-line {
  color: var(--blue) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem) !important;
  font-style: italic;
  font-weight: 600;
}

.home-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-actions-center {
  margin-top: 34px;
}

.contact-actions {
  margin-top: 28px;
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 50px;
  font: 700 0.86rem/1.25 "Source Sans 3", sans-serif;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--blue-deep);
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-deep);
}

.button-secondary {
  color: var(--blue);
  background: transparent;
  border-color: rgba(29, 55, 142, 0.45);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--blue);
  color: #fff;
}

.button-whatsapp {
  color: #fff;
  background: #25d366;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: #1fb959;
}

.consultation-banner {
  width: min(1120px, 100%);
  margin: clamp(48px, 7vw, 80px) auto 0;
  padding: 24px clamp(22px, 5vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(21, 40, 104, 0.22);
}

.consultation-banner > div {
  display: grid;
  gap: 4px;
}

.consultation-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consultation-banner strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
}

.consultation-banner .button {
  flex: 0 0 auto;
}

.home-services-grid,
.approach-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.approach-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 0 0 28px;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.approach-flow-step {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.approach-flow-step:hover,
.approach-flow-step:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.approach-flow-arrow {
  color: var(--gold);
  font-weight: 500;
  pointer-events: none;
}

.approach-grid {
  position: relative;
}

.approach-card {
  position: relative;
  scroll-margin-top: 168px;
}

.approach-card:target {
  border-color: var(--gold);
  box-shadow: 0 22px 44px rgba(21, 40, 104, 0.16);
}

@media (min-width: 861px) {
  .approach-grid {
    column-gap: 40px;
  }

  .approach-card:nth-child(odd)::after {
    content: "→";
    position: absolute;
    top: 26px;
    right: -34px;
    z-index: 2;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: var(--gold);
    border-radius: 50%;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(21, 40, 104, 0.2);
    pointer-events: none;
  }

  .approach-card:last-child::after {
    content: none;
  }
}

.home-services-grid .home-service-card {
  animation: card-slide-in 0.85s ease-out backwards;
}

.home-services-grid .home-service-card:nth-child(1) { animation-delay: 0.05s; }
.home-services-grid .home-service-card:nth-child(2) { animation-delay: 0.18s; }
.home-services-grid .home-service-card:nth-child(3) { animation-delay: 0.31s; }
.home-services-grid .home-service-card:nth-child(4) { animation-delay: 0.44s; }
.home-services-grid .home-service-card:nth-child(5) { animation-delay: 0.57s; }
.home-services-grid .home-service-card:nth-child(6) { animation-delay: 0.70s; }
.home-services-grid .home-service-card:nth-child(7) { animation-delay: 0.83s; }
.home-services-grid .home-service-card:nth-child(8) { animation-delay: 0.96s; }

@keyframes card-slide-in {
  from {
    opacity: 0;
    transform: translateX(72px);
  }

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

.home-service-card,
.approach-card,
.why-card,
.purpose-card,
.numbered-service {
  padding: clamp(24px, 3vw, 32px);
}

.service-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.why-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--blue);
  background: rgba(255, 191, 0, 0.16);
  border: 1px solid rgba(255, 191, 0, 0.55);
  border-radius: 50%;
}

.why-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.home-service-card h3,
.approach-card h3,
.why-card h3,
.purpose-card h3,
.numbered-service h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;
}

.contact-info-card h2 {
  margin: 0 0 22px;
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--gold);
}

.home-service-card p,
.approach-card p,
.why-card p,
.numbered-service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-service-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-service-card a:hover,
.home-service-card a:focus-visible {
  color: var(--gold-deep);
}

.purpose-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.contact-info-card {
  height: 100%;
  box-sizing: border-box;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
}

.contact-note-card {
  justify-content: flex-start;
}

.contact-note-card .home-journey-line {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 2.8vw, 2rem) !important;
}

.contact-note-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-note-card p:last-child {
  margin-bottom: 0;
}

.purpose-card .eyebrow {
  margin-bottom: 10px;
}

.numbered-services {
  display: grid;
  gap: 16px;
}

.numbered-service {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 24px;
  align-items: start;
  scroll-margin-top: 168px;
}

.numbered-service .why-icon {
  margin-top: 2px;
}

.home-service-card .why-icon {
  margin-bottom: 10px;
}

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

.services-cta {
  margin-top: clamp(70px, 9vw, 110px);
  padding: clamp(36px, 6vw, 56px) 28px;
  text-align: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: 10px;
  color: #fff;
}

.services-cta h2,
.services-cta .eyebrow,
.services-cta p {
  color: #fff;
}

.services-cta .eyebrow {
  color: var(--gold);
  margin: 14px 0 10px;
}

.services-cta > p:not(.eyebrow) {
  margin: 0 0 24px;
}

.contact-details {
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}

.contact-details li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.contact-details li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-details span {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  text-decoration: underline;
}

.booking-form-card {
  padding: clamp(28px, 5vw, 54px);
}

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

.form-field {
  min-width: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.optional-label {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(29, 55, 142, 0.28);
  border-radius: 6px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input,
.form-field select {
  height: 52px;
}

.form-field textarea {
  min-height: 140px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 55, 142, 0.12);
}

.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.form-message {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-radius: 5px;
}

.form-message-error {
  color: #6b2f2f;
  background: #f7e9e3;
  border-left: 4px solid #9b554c;
}

.form-message ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.form-message .button {
  margin-top: 16px;
}

.construction-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: clamp(54px, 8vw, 100px) 20px;
}

.construction-card {
  width: min(720px, 100%);
  padding: clamp(54px, 8vw, 86px) clamp(24px, 8vw, 84px);
  text-align: center;
}

.status {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(21, 40, 104, 0.68);
  backdrop-filter: blur(5px);
}

.confirmation-modal.is-visible {
  display: grid;
}

.confirmation-dialog {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(34px, 6vw, 54px);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.confirmation-dialog h2 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.confirmation-dialog p {
  margin: 0;
  line-height: 1.65;
}

.confirmation-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-deep);
  background: var(--gold);
  border-radius: 50%;
  font-size: 1.5rem;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  padding: 36px 20px 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  text-align: center;
}

.footer-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.footer-name {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-tagline {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
}

.footer-services,
.footer-contact,
.footer-legal {
  margin: 0 0 12px;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.footer-legal {
  margin-bottom: 0;
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.site-footer a {
  color: #fff;
  font-weight: 600;
  text-underline-offset: 3px;
}

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

.footer-separator {
  margin: 0 8px;
  opacity: 0.55;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(34, 92, 48, 0.35);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  color: #fff;
  background: #1fb959;
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 860px) {
  .home-icon-link {
    width: 72px;
  }

  .home-icon-label {
    opacity: 1;
    transform: none;
    font-size: 0.64rem;
  }

  .header-inner {
    min-height: 74px;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
  }

  .header-logo {
    width: 52px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    padding: 0;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(255, 191, 0, 0.55);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-toggle-icon,
  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle-icon {
    position: relative;
  }

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

  .menu-toggle-icon::before {
    top: -6px;
  }

  .menu-toggle-icon::after {
    top: 6px;
  }

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

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

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

  .site-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 20px 22px;
    background: var(--blue);
    border-top: 1px solid rgba(255, 191, 0, 0.35);
  }

  .site-navigation.is-open {
    display: block;
  }

  .site-navigation ul {
    display: block;
  }

  .site-navigation a {
    padding: 13px 4px;
    text-align: center;
  }

  .has-dropdown {
    display: block;
  }

  .has-dropdown .nav-dropdown,
  .site-navigation .nav-dropdown,
  .site-navigation .has-dropdown:hover .nav-dropdown,
  .site-navigation .has-dropdown:focus-within .nav-dropdown {
    position: static;
    left: auto;
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
    margin: 0 auto 8px;
    padding: 6px 0 10px;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown a {
    padding: 8px 4px;
    color: var(--gold);
    font-size: 0.84rem;
    text-transform: none;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible {
    color: #fff;
    background: transparent;
  }

  .home-services-grid,
  .approach-grid,
  .why-grid,
  .purpose-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .numbered-service {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .consultation-banner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
