:root {
  --navy-950: #071A2E;
  --navy-900: #0B253C;
  --navy-800: #12324B;
  --teal-700: #007C78;
  --teal-600: #009B92;
  --teal-soft: #DDEDEA;
  --gold-600: #B9903F;
  --gold-500: #C8A75A;
  --gold-soft: #F0E2C5;
  --surface-page: #F7F3EC;
  --surface-soft: #F4EFE6;
  --surface-card: #FFFCF7;
  --surface-muted: #EFE6D8;
  --border-soft: #E1D4C2;
  --text-main: #071A2E;
  --text-muted: #53606B;
  --ink: var(--text-main);
  --muted: var(--text-muted);
  --line: var(--border-soft);
  --soft: var(--surface-soft);
  --paper: var(--surface-card);
  --navy: var(--navy-950);
  --teal: var(--teal-700);
  --gold: var(--gold-500);
  --shadow: 0 28px 80px rgba(7, 26, 46, 0.16);
  --glow: 0 22px 70px rgba(0, 124, 120, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(200, 167, 90, 0.13), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(0, 124, 120, 0.08), transparent 30%),
    linear-gradient(180deg, var(--surface-card) 0%, var(--surface-page) 42%, var(--surface-soft) 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 35, 63, 0.14);
  box-shadow: 0 14px 38px rgba(10, 24, 48, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
}

.brand img {
  width: clamp(270px, 25vw, 400px);
  height: auto;
}

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

.nav a {
  padding: 10px 12px;
  color: #344256;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
}

.nav a:hover,
.nav a.active {
  background: #eef5fb;
  color: var(--navy);
}

.nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #12375a);
  box-shadow: 0 12px 30px rgba(10, 24, 48, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: calc(92vh - 78px);
  padding: clamp(36px, 5vw, 70px) clamp(18px, 6vw, 90px);
  background:
    radial-gradient(circle at 10% 18%, rgba(216, 179, 90, 0.24), transparent 28%),
    radial-gradient(circle at 76% 18%, rgba(0, 169, 157, 0.18), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fb 52%, #e4eef2 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.03;
  text-shadow: 0 16px 42px rgba(10, 24, 48, 0.16);
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 82px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 56px);
}

h3 {
  color: var(--navy);
}

.hero-lead {
  max-width: 680px;
  color: #344256;
  font-size: clamp(17px, 1.6vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(10, 24, 48, 0.14);
}

.button.primary {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.button.ghost {
  color: var(--navy);
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 36px;
}

.hero-stats div,
.service-card,
.testimonial,
.contact-form,
.admin-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 253, 255, 0.86));
  border: 1px solid rgba(184, 202, 219, 0.82);
  border-radius: 10px;
  box-shadow: 0 14px 42px rgba(10, 24, 48, 0.07);
}

.hero-stats div {
  padding: 18px;
}

.hero-stats strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-image {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(10, 24, 48, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(10, 24, 48, 0.08), rgba(0, 169, 157, 0.08)),
    #fff;
  box-shadow: var(--shadow), var(--glow);
}

.hero-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 52%, rgba(10, 24, 48, 0.46)),
    radial-gradient(circle at 18% 12%, rgba(216, 179, 90, 0.16), transparent 28%);
  pointer-events: none;
}

.hero-image::after {
  position: absolute;
  inset: 18px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 10px;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.portrait-meta {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 310px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(10, 24, 48, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.portrait-meta span,
.portrait-meta small {
  color: #d8e5f0;
  font-size: 12px;
  font-weight: 700;
}

.portrait-meta strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 18px;
}

.visual-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
  max-width: 1180px;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.visual-band img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.visual-panel {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 54px);
  color: #d9e5ef;
  background:
    linear-gradient(135deg, rgba(10, 24, 48, 0.96), rgba(10, 24, 48, 0.82)),
    radial-gradient(circle at 100% 0%, rgba(0, 169, 157, 0.22), transparent 36%);
}

.visual-panel h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
}

.visual-panel p:last-child {
  color: #bfd0dd;
  font-size: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 60px;
}

.prose {
  color: #344256;
  font-size: 17px;
}

.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.value-row span {
  padding: 9px 12px;
  color: var(--navy);
  background: var(--gold-soft);
  border: 1px solid rgba(217, 164, 65, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

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

.service-visual {
  position: relative;
  overflow: hidden;
  height: 280px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 24, 48, 0.34), transparent 58%);
  pointer-events: none;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card {
  padding: 24px;
  min-height: 260px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 169, 157, 0.28);
  box-shadow: 0 22px 58px rgba(10, 24, 48, 0.13);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 50%;
  font-weight: 800;
}

.service-card p,
.process-copy p,
.testimonial blockquote {
  color: var(--muted);
}

.clarity-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
  gap: 36px;
  align-items: start;
  padding-top: 46px;
  padding-bottom: 50px;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 169, 157, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(232, 242, 247, 0.2));
  border-radius: 14px;
}

.clarity-section .section-heading p:not(.eyebrow) {
  color: #44546a;
  font-size: 17px;
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.clarity-grid li {
  position: relative;
  min-height: 82px;
  padding: 20px 20px 20px 52px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 253, 0.9));
  border: 1px solid rgba(184, 202, 219, 0.82);
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(10, 24, 48, 0.07);
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.clarity-grid li::before {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(135deg, transparent 42%, #0b8f8b 43% 58%, transparent 59%),
    radial-gradient(circle, rgba(0, 169, 157, 0.14), rgba(0, 169, 157, 0.04));
  border: 1px solid rgba(0, 169, 157, 0.24);
  border-radius: 50%;
  content: "";
}

.clarity-grid li:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 169, 157, 0.3);
  box-shadow: 0 22px 60px rgba(10, 24, 48, 0.12);
}

.process-section {
  position: relative;
  min-height: 190vh;
  margin-top: 24px;
  padding: 72px 18px 88px;
  color: #d8e3ee;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 169, 157, 0.32), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(216, 179, 90, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(10, 24, 48, 0.82), rgba(10, 24, 48, 0.93)),
    url("/assets/process-workflow.png") center top / cover fixed;
  overflow: hidden;
}

.process-section::before,
.process-section::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 0;
  height: 110px;
  content: "";
  pointer-events: none;
}

.process-section::before {
  top: 0;
  background: linear-gradient(180deg, rgba(237, 244, 247, 0.98), rgba(10, 24, 48, 0));
}

.process-section::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(237, 244, 247, 0.92), rgba(10, 24, 48, 0));
}

.process-intro {
  position: sticky;
  top: 92px;
  z-index: 2;
  max-width: 500px;
  margin-left: max(18px, calc((100vw - 1180px) / 2));
}

.process-intro h2,
.process-step h3 {
  color: #fff;
}

.process-intro p:last-child {
  color: #bed0de;
}

.process-rail {
  position: absolute;
  top: 138px;
  bottom: 96px;
  left: 50%;
  width: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.process-rail span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff, var(--teal), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 160ms linear;
  box-shadow: 0 0 26px rgba(0, 169, 157, 0.55);
}

.process-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 46px;
  max-width: 1180px;
  margin: 54px auto 0;
}

.process-step {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 0.58fr);
  gap: 46px;
  min-height: 250px;
  opacity: 0.62;
  transform: translateY(16px) scale(0.995);
  transition: opacity 320ms ease, transform 320ms ease;
}

.process-step:nth-child(even) {
  grid-template-columns: minmax(0, 0.58fr) minmax(160px, 0.42fr);
}

.process-step:nth-child(even) .process-number {
  grid-column: 2;
  text-align: left;
}

.process-step:nth-child(even) .process-copy {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.process-step.is-active {
  opacity: 1;
  transform: translateY(-4px) scale(1.015);
}

.process-number {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.9;
  text-align: right;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
}

.process-number::after {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: 16px;
  color: var(--navy);
  background: linear-gradient(135deg, #fff, #d8bd78);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 34px rgba(216, 179, 90, 0.45);
  vertical-align: middle;
}

.process-copy {
  max-width: 520px;
  min-height: 210px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(10, 24, 48, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

.process-step.is-active .process-copy {
  border-color: rgba(0, 169, 157, 0.46);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(216, 189, 120, 0.16),
    0 0 60px rgba(0, 169, 157, 0.16);
}

.process-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--navy);
  background: #d8bd78;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-copy p:last-child {
  color: #c6d3df;
  font-size: 17px;
  font-weight: 600;
}

.quote-band {
  max-width: 1120px;
  margin-top: -18px;
  margin-bottom: 0;
  padding-top: 64px;
  padding-bottom: 54px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 169, 157, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(184, 202, 219, 0.56);
  border-radius: 14px;
  box-shadow: 0 22px 64px rgba(10, 24, 48, 0.07);
}

.quote-band p {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
}

.quote-band strong {
  color: var(--teal);
}

.final-cta {
  max-width: 1180px;
  margin: 8px auto 0;
  padding: clamp(42px, 6vw, 72px);
  color: #d9e5ef;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 169, 157, 0.28), transparent 28%),
    linear-gradient(135deg, #0a1830, #12324a);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px 16px 0 0;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  color: #c5d4df;
  font-size: 18px;
}

.final-cta .button {
  margin-top: 10px;
}

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

.testimonial {
  margin: 0;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.testimonials-section {
  padding-top: 48px;
}

.testimonials-section .section-heading {
  margin-bottom: 22px;
}

.testimonial blockquote {
  position: relative;
  padding-top: 22px;
}

.testimonial blockquote::before {
  position: absolute;
  top: -6px;
  left: 0;
  color: #d8bd78;
  content: "“";
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.testimonial figcaption {
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 255, 0.9));
  border: 1px solid rgba(184, 202, 219, 0.82);
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(10, 24, 48, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

details:hover {
  border-color: rgba(0, 169, 157, 0.28);
  box-shadow: 0 18px 48px rgba(10, 24, 48, 0.09);
}

summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  color: var(--teal);
  content: "+";
  font-size: 22px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: start;
  max-width: 100%;
  padding: 62px max(18px, calc((100vw - 1180px) / 2)) 72px;
  color: #d9e5ef;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 169, 157, 0.2), transparent 28%),
    linear-gradient(135deg, #0a1830, #102c45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h2 {
  color: #fff;
}

.contact-section > div > p:not(.eyebrow) {
  color: #c5d4df;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-lines a {
  color: #fff;
  font-weight: 800;
}

.contact-form,
.admin-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.contact-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 253, 0.92));
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cdd9e5;
  border-radius: 8px;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(0, 169, 157, 0.68);
  box-shadow: 0 0 0 4px rgba(0, 169, 157, 0.12);
}

textarea {
  resize: vertical;
}

.form-notice {
  padding: 12px 14px;
  color: #075e59;
  background: #e6fbf4;
  border: 1px solid #b8eadf;
  border-radius: 8px;
  font-weight: 800;
}

.form-error {
  padding: 12px 14px;
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
  border-radius: 8px;
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 46px clamp(18px, 4vw, 60px);
  color: #dbe7f1;
  background:
    linear-gradient(135deg, rgba(10, 24, 48, 0.98), rgba(8, 35, 54, 0.98)),
    radial-gradient(circle at 70% 0%, rgba(0, 169, 157, 0.26), transparent 26%);
}

.footer p {
  max-width: 560px;
  margin: 8px 0 0;
  color: #aebdca;
}

.footer-logo {
  width: min(430px, 82vw);
  height: auto;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.footer-social,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a,
.social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.social-row {
  margin-top: 18px;
}

.social-row a {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  max-width: 680px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cookie-toggle {
  display: inline-flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cookie-toggle input {
  width: auto;
}

.cookie-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.cookie-actions a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cookie-banner button {
  padding: 10px 14px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-banner button:last-child {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 116px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #0a1830, #0b8f8b);
  border-radius: 999px;
  border: 1px solid rgba(216, 189, 120, 0.24);
  box-shadow: 0 18px 48px rgba(10, 24, 48, 0.28);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(0, 169, 157, 0.2);
}

.legal-page {
  max-width: 860px;
  min-height: 68vh;
  margin: 0 auto;
  padding: 82px 18px;
}

.legal-page .prose h2 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.legal-page .prose ul {
  padding-left: 20px;
  color: #344256;
}

.admin-body {
  min-height: 100vh;
  background: #edf4f7;
}

.admin-login {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 18px;
}

.admin-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 42px 18px;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

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

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-on-scroll.is-visible,
.service-card.is-visible,
.testimonial.is-visible,
.clarity-grid li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.testimonial,
.clarity-grid li {
  opacity: 0;
  transform: translateY(16px);
}

.service-card.is-visible:hover,
.testimonial.is-visible:hover,
.clarity-grid li.is-visible:hover {
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-on-scroll,
  .service-card,
  .testimonial,
  .clarity-grid li {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-section,
  .clarity-section {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 440px;
  }

  .brand img {
    width: min(340px, 52vw);
  }

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

  .visual-band {
    grid-template-columns: 1fr;
  }

  .visual-band img {
    height: 320px;
  }

  .process-section {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 70px;
    background-attachment: scroll;
  }

  .process-intro {
    position: relative;
    top: auto;
    margin: 0 auto 42px;
  }

  .process-rail {
    left: 38px;
  }

  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    min-height: 230px;
  }

  .process-step:nth-child(even) .process-number,
  .process-step:nth-child(even) .process-copy {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
  }

  .process-number {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header,
  .footer,
  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .brand img {
    width: min(300px, 76vw);
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .portrait-meta {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }

  .hero-stats,
  .service-grid,
  .testimonial-grid,
  .clarity-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .process-rail {
    display: none;
  }

  .process-copy {
    padding: 22px;
    min-height: auto;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 10px;
    bottom: 128px;
    min-height: 44px;
    padding: 0 14px;
  }
}

/* Final visual refinement */
.section,
.hero,
.visual-band,
.clarity-section,
.process-section,
.quote-band,
.testimonials-section,
.faq,
.final-cta,
.contact-section,
.footer {
  isolation: isolate;
}

.reveal-on-scroll,
.service-card,
.testimonial,
.clarity-grid li {
  opacity: 1;
  transform: none;
}

.reveal-on-scroll.is-visible,
.service-card.is-visible,
.testimonial.is-visible,
.clarity-grid li.is-visible {
  opacity: 1;
  transform: none;
}

.service-card:hover,
.service-card.is-visible:hover,
.testimonial:hover,
.testimonial.is-visible:hover,
.clarity-grid li:hover,
.clarity-grid li.is-visible:hover {
  transform: translateY(-4px);
}

.hero {
  min-height: min(820px, calc(92vh - 78px));
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}

.section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.visual-band {
  margin-top: 8px;
  margin-bottom: 22px;
}

.clarity-section {
  margin-bottom: 0;
  padding-top: 42px;
  padding-bottom: 44px;
  border: 1px solid rgba(184, 202, 219, 0.42);
}

.process-section {
  min-height: 0;
  margin-top: 28px;
  padding: 76px 18px 82px;
  background:
    linear-gradient(180deg, rgba(10, 24, 48, 0.9), rgba(10, 24, 48, 0.94)),
    radial-gradient(circle at 18% 14%, rgba(0, 169, 157, 0.28), transparent 32%),
    radial-gradient(circle at 84% 44%, rgba(216, 179, 90, 0.22), transparent 30%),
    url("/assets/process-workflow.png") center center / cover fixed;
  border-top: 1px solid rgba(10, 24, 48, 0.16);
  border-bottom: 1px solid rgba(10, 24, 48, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.process-section::before,
.process-section::after {
  display: none;
}

.process-intro {
  position: relative;
  top: auto;
  max-width: 600px;
  margin: 0 auto 54px;
  text-align: center;
}

.process-intro h2 {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.process-intro p:last-child {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

.process-rail {
  top: 276px;
  bottom: 86px;
  width: 3px;
  background: rgba(255, 255, 255, 0.16);
}

.process-rail span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), var(--teal), #d8bd78);
  box-shadow: 0 0 22px rgba(0, 169, 157, 0.42);
}

.process-timeline {
  gap: 34px;
  margin-top: 0;
}

.process-step,
.process-step:nth-child(even) {
  align-items: center;
  min-height: 210px;
  opacity: 0.82;
  transform: none;
}

.process-step.is-active {
  opacity: 1;
  transform: translateY(-3px) scale(1.008);
}

.process-number {
  z-index: 1;
  font-size: clamp(48px, 5.6vw, 78px);
  letter-spacing: 0;
}

.process-number::after {
  width: 22px;
  height: 22px;
  margin-left: 14px;
  background: linear-gradient(135deg, #fff8e8, #d8bd78);
}

.process-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  min-height: 178px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(10, 24, 48, 0.76);
  border-color: rgba(255, 255, 255, 0.2);
}

.process-step.is-active .process-copy {
  border-color: rgba(0, 169, 157, 0.48);
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(216, 189, 120, 0.14),
    0 0 40px rgba(0, 169, 157, 0.14);
}

.process-kicker {
  background: #d8bd78;
}

.quote-band {
  max-width: 1180px;
  margin-top: 34px;
  padding-top: 52px;
  padding-bottom: 46px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(239, 247, 250, 0.92));
}

.quote-band p {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.testimonials-section {
  margin-top: 6px;
  padding-top: 52px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 169, 157, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(239, 247, 250, 0.5));
  border: 1px solid rgba(184, 202, 219, 0.38);
  border-radius: 16px;
}

.testimonial-grid {
  align-items: stretch;
}

.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  padding: 30px;
  overflow: hidden;
}

.testimonial::after {
  position: absolute;
  right: -18px;
  bottom: -28px;
  color: rgba(216, 189, 120, 0.12);
  content: "\201D";
  font-family: Georgia, serif;
  font-size: 132px;
  line-height: 1;
  pointer-events: none;
}

.testimonial blockquote {
  flex: 1;
  margin: 0;
  padding-top: 28px;
  color: #3f4e61;
  font-size: 16px;
}

.testimonial blockquote::before {
  color: #d8bd78;
  content: "\201C";
}

.testimonial figcaption {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(184, 202, 219, 0.72);
}

.faq {
  padding-top: 48px;
}

.faq-list {
  gap: 12px;
}

details {
  border-radius: 12px;
}

details[open] {
  border-color: rgba(0, 169, 157, 0.34);
  box-shadow:
    0 18px 48px rgba(10, 24, 48, 0.09),
    0 0 0 1px rgba(216, 189, 120, 0.12);
}

summary {
  padding: 20px 58px 20px 22px;
}

summary::after {
  right: 22px;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--navy);
  background: rgba(0, 169, 157, 0.1);
  border: 1px solid rgba(0, 169, 157, 0.18);
  border-radius: 50%;
  content: "+";
  font-size: 18px;
  line-height: 1;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

details[open] summary::after {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

details p {
  max-height: 0;
  margin: 0;
  padding: 0 22px;
  opacity: 0;
  overflow: hidden;
  transition: max-height 260ms ease, opacity 220ms ease, padding 260ms ease;
}

details[open] p {
  max-height: 280px;
  padding: 0 22px 22px;
  opacity: 1;
}

.final-cta {
  position: relative;
  margin-top: 18px;
  border-radius: 18px 18px 0 0;
}

.contact-section {
  position: relative;
  margin-top: 0;
  padding-top: 66px;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 16% 22%, rgba(0, 169, 157, 0.18), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(216, 179, 90, 0.1), transparent 24%),
    linear-gradient(135deg, #0a1830, #102c45);
}

.contact-section::before {
  position: absolute;
  top: 0;
  right: max(18px, calc((100vw - 1180px) / 2));
  left: max(18px, calc((100vw - 1180px) / 2));
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
}

.footer {
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-logo {
  width: min(330px, 80vw);
  padding: 7px 10px;
}

.footer-links,
.footer-social {
  align-content: flex-start;
  justify-content: flex-end;
}

.whatsapp-float {
  background: linear-gradient(135deg, var(--navy), #0b746f);
}

@media (max-width: 980px) {
  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .process-section {
    padding-top: 56px;
    padding-bottom: 58px;
    background-attachment: scroll;
  }

  .process-intro {
    margin-bottom: 32px;
    text-align: left;
  }

  .process-rail {
    top: 238px;
    bottom: 56px;
    left: max(42px, calc((100vw - 720px) / 2 + 42px));
  }

  .process-timeline {
    max-width: 720px;
    gap: 22px;
  }

  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
  }

  .process-step:nth-child(even) .process-number,
  .process-step:nth-child(even) .process-copy {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
  }

  .process-number {
    font-size: 42px;
    text-align: left;
  }

  .process-number::after {
    display: block;
    width: 16px;
    height: 16px;
    margin: 12px 0 0 4px;
  }

  .process-copy {
    max-width: none;
    min-height: 0;
    padding: 20px;
  }

  .quote-band,
  .testimonials-section {
    border-radius: 12px;
  }

  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 100vw;
  }

  .hero {
    padding-bottom: 42px;
  }

  .nav {
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nav .nav-cta {
    flex-basis: 100%;
    justify-content: center;
    text-align: center;
  }

  main,
  .hero,
  .hero-copy,
  .section,
  .split,
  .prose,
  .visual-panel,
  .section-heading,
  .service-card,
  .testimonial,
  .contact-section,
  .contact-form,
  .footer {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button {
    width: min(100%, 280px);
  }

  h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(30px, 9vw, 36px);
  }

  h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(27px, 7.4vw, 32px);
  }

  .button {
    text-align: center;
    white-space: normal;
  }

  .visual-band {
    margin-right: 12px;
    margin-left: 12px;
  }

  .process-section {
    margin-top: 14px;
    padding: 46px 14px 50px;
  }

  .process-rail {
    display: none;
  }

  .process-timeline {
    gap: 16px;
  }

  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 8px;
    opacity: 1;
    transform: none;
  }

  .process-step.is-active {
    transform: none;
  }

  .process-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 34px;
  }

  .process-number::after {
    display: inline-block;
    margin: 0;
  }

  .process-copy {
    padding: 18px;
  }

  .process-copy p:last-child {
    font-size: 15px;
  }

  .quote-band,
  .testimonials-section,
  .faq {
    margin-right: 12px;
    margin-left: 12px;
  }

  .quote-band {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .testimonial {
    min-height: 0;
  }

  .final-cta {
    margin-right: 12px;
    margin-left: 12px;
    padding: 34px 22px;
  }

  .contact-section {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .footer {
    padding-top: 34px;
    padding-bottom: 92px;
  }

  .whatsapp-float {
    bottom: 104px;
  }
}

@media (max-width: 480px) {
  .hero-copy,
  .section-heading,
  .prose,
  .visual-panel,
  .service-card,
  .testimonial,
  .process-copy {
    max-width: calc(100vw - 38px);
  }

  h1 {
    font-size: clamp(29px, 8.3vw, 34px);
  }

  h2,
  .visual-panel h2 {
    font-size: clamp(26px, 7.2vw, 30px);
  }

  .brand img {
    width: min(286px, 78vw);
  }
}

/* Warm premium palette refinement */
.site-header {
  background: rgba(255, 252, 247, 0.78);
  border-bottom-color: rgba(185, 144, 63, 0.16);
}

.site-header.is-scrolled {
  background: rgba(255, 252, 247, 0.92);
  border-color: rgba(185, 144, 63, 0.22);
  box-shadow: 0 14px 38px rgba(7, 26, 46, 0.1);
}

.nav a {
  color: #314150;
}

.nav a:hover,
.nav a.active {
  background: rgba(221, 237, 234, 0.72);
  color: var(--navy-950);
}

.nav .nav-cta {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 14px 32px rgba(7, 26, 46, 0.18);
}

.hero {
  background:
    radial-gradient(circle at 10% 18%, rgba(200, 167, 90, 0.22), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(0, 124, 120, 0.11), transparent 27%),
    linear-gradient(135deg, var(--surface-card) 0%, var(--surface-page) 54%, var(--surface-soft) 100%);
  border-bottom-color: rgba(185, 144, 63, 0.14);
}

.hero-lead,
.prose,
.clarity-section .section-heading p:not(.eyebrow),
.service-card p,
.process-copy p,
.testimonial blockquote,
details p,
.hero-stats span {
  color: var(--text-muted);
}

.button {
  border-color: rgba(200, 167, 90, 0.24);
}

.button.primary {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
  border-color: rgba(0, 124, 120, 0.76);
  box-shadow: 0 14px 34px rgba(0, 124, 120, 0.14);
}

.button.ghost,
.social-row a,
.cookie-banner,
.cookie-banner button,
.hero-stats div,
.service-card,
.testimonial,
.contact-form,
.admin-card,
details,
.clarity-grid li {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(250, 246, 238, 0.88));
  border-color: rgba(200, 167, 90, 0.22);
  box-shadow: 0 16px 44px rgba(7, 26, 46, 0.08);
}

.button.ghost {
  color: var(--navy-950);
}

.hero-image {
  background:
    linear-gradient(135deg, rgba(185, 144, 63, 0.08), rgba(0, 124, 120, 0.07)),
    var(--surface-card);
  border-color: rgba(185, 144, 63, 0.18);
  box-shadow:
    0 28px 80px rgba(7, 26, 46, 0.18),
    0 22px 70px rgba(0, 124, 120, 0.11);
}

.hero-image::before {
  background:
    linear-gradient(180deg, transparent 54%, rgba(7, 26, 46, 0.48)),
    radial-gradient(circle at 18% 12%, rgba(200, 167, 90, 0.14), transparent 28%);
}

.portrait-meta {
  background: rgba(7, 26, 46, 0.78);
}

.value-row span,
.service-card span {
  background: rgba(240, 226, 197, 0.72);
  border-color: rgba(185, 144, 63, 0.34);
}

.visual-band,
.service-visual {
  border-color: rgba(185, 144, 63, 0.18);
}

.visual-panel {
  background:
    linear-gradient(135deg, rgba(7, 26, 46, 0.97), rgba(11, 37, 60, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(0, 124, 120, 0.18), transparent 36%);
}

.clarity-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(200, 167, 90, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.46), rgba(244, 239, 230, 0.56));
  border-color: rgba(200, 167, 90, 0.18);
}

.clarity-grid li::before {
  background:
    linear-gradient(135deg, transparent 42%, var(--teal-700) 43% 58%, transparent 59%),
    radial-gradient(circle, rgba(0, 124, 120, 0.13), rgba(0, 124, 120, 0.04));
  border-color: rgba(0, 124, 120, 0.24);
}

.process-section {
  background:
    linear-gradient(180deg, rgba(7, 26, 46, 0.9), rgba(11, 37, 60, 0.95)),
    radial-gradient(circle at 18% 14%, rgba(0, 124, 120, 0.22), transparent 32%),
    radial-gradient(circle at 84% 44%, rgba(200, 167, 90, 0.18), transparent 30%),
    url("/assets/process-workflow.png") center center / cover fixed;
  border-top-color: rgba(185, 144, 63, 0.18);
  border-bottom-color: rgba(185, 144, 63, 0.18);
}

.process-rail span {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.82), var(--teal-700), var(--gold-500));
  box-shadow: 0 0 22px rgba(0, 124, 120, 0.34);
}

.process-number::after {
  background: linear-gradient(135deg, #fff8e8, var(--gold-500));
  box-shadow: 0 0 28px rgba(185, 144, 63, 0.34);
}

.process-copy {
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.1), rgba(255, 252, 247, 0.035)),
    rgba(7, 26, 46, 0.77);
}

.process-kicker {
  background: var(--gold-soft);
  color: var(--navy-950);
}

.quote-band,
.testimonials-section {
  background:
    radial-gradient(circle at 22% 0%, rgba(200, 167, 90, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.9), rgba(244, 239, 230, 0.86));
  border-color: rgba(200, 167, 90, 0.22);
}

.testimonial blockquote::before,
.testimonial::after {
  color: rgba(185, 144, 63, 0.2);
}

details:hover,
details[open],
.service-card:hover,
.testimonial:hover,
.clarity-grid li:hover {
  border-color: rgba(0, 124, 120, 0.28);
  box-shadow: 0 22px 58px rgba(7, 26, 46, 0.11);
}

summary::after {
  background: rgba(221, 237, 234, 0.82);
  border-color: rgba(0, 124, 120, 0.18);
}

details[open] summary::after {
  background: var(--teal-700);
  border-color: var(--teal-700);
}

.final-cta,
.contact-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 124, 120, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(185, 144, 63, 0.11), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.contact-form input,
.contact-form textarea,
input,
textarea {
  background: var(--surface-card);
  border-color: rgba(200, 167, 90, 0.28);
}

input:focus,
textarea:focus {
  border-color: rgba(0, 124, 120, 0.68);
  box-shadow: 0 0 0 4px rgba(0, 124, 120, 0.12);
}

.form-notice {
  color: #075e59;
  background: var(--teal-soft);
  border-color: rgba(0, 124, 120, 0.22);
}

.footer {
  background:
    linear-gradient(135deg, rgba(7, 26, 46, 0.99), rgba(11, 37, 60, 0.98)),
    radial-gradient(circle at 70% 0%, rgba(0, 124, 120, 0.18), transparent 26%);
}

.footer-logo {
  background: rgba(255, 252, 247, 0.95);
}

.whatsapp-float {
  background: linear-gradient(135deg, var(--navy-950), var(--teal-700));
  border-color: rgba(200, 167, 90, 0.24);
}

@media (max-width: 980px) {
  .process-section {
    background:
      linear-gradient(180deg, rgba(7, 26, 46, 0.9), rgba(11, 37, 60, 0.95)),
      radial-gradient(circle at 18% 14%, rgba(0, 124, 120, 0.22), transparent 32%),
      radial-gradient(circle at 84% 44%, rgba(200, 167, 90, 0.18), transparent 30%),
      url("/assets/process-workflow.png") center center / cover scroll;
  }
}

/* Editorial background and footer refinement */
.hero,
.split,
.clarity-section,
.quote-band,
.testimonials-section,
.faq {
  position: relative;
  overflow: hidden;
}

.hero > *,
.split > *,
.clarity-section > *,
.quote-band > *,
.testimonials-section > *,
.faq > * {
  position: relative;
  z-index: 1;
}

.hero::before,
.split::before,
.clarity-section::before,
.testimonials-section::before,
.faq::before {
  position: absolute;
  inset: auto auto 8% -8%;
  z-index: 0;
  width: min(520px, 58vw);
  height: min(520px, 58vw);
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.72), rgba(240, 226, 197, 0.2)),
    linear-gradient(45deg, transparent 0 45%, rgba(185, 144, 63, 0.14) 46% 48%, transparent 49%),
    linear-gradient(135deg, rgba(0, 124, 120, 0.05), transparent 64%);
  border: 1px solid rgba(200, 167, 90, 0.13);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 70px rgba(7, 26, 46, 0.06);
  opacity: 0.74;
  pointer-events: none;
  transform: rotate(-10deg);
}

.hero::before {
  top: 14%;
  right: -12%;
  bottom: auto;
  left: auto;
  width: min(620px, 46vw);
  height: min(620px, 46vw);
  opacity: 0.48;
  transform: rotate(13deg);
}

.split::before {
  top: 10%;
  right: -18%;
  bottom: auto;
  left: auto;
  opacity: 0.42;
  transform: rotate(18deg);
}

.clarity-section::before {
  right: -20%;
  bottom: -34%;
  left: auto;
  opacity: 0.52;
  transform: rotate(12deg);
}

.testimonials-section::before,
.faq::before {
  top: -28%;
  right: -14%;
  bottom: auto;
  left: auto;
  opacity: 0.44;
  transform: rotate(16deg);
}

.quote-band {
  border-radius: 18px;
  box-shadow:
    0 22px 70px rgba(7, 26, 46, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.quote-band::before {
  position: absolute;
  inset: 18px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(200, 167, 90, 0.12);
  border-radius: 14px;
  pointer-events: none;
}

.final-cta {
  margin-bottom: 38px;
  border-radius: 18px;
  box-shadow:
    0 24px 74px rgba(7, 26, 46, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-section {
  grid-template-columns: minmax(0, 0.74fr) minmax(380px, 0.92fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  border-top: 1px solid rgba(200, 167, 90, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-section > div:first-child {
  max-width: 520px;
}

.contact-lines {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form {
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 239, 230, 0.92));
  border-color: rgba(200, 167, 90, 0.34);
  box-shadow:
    0 26px 76px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-form label {
  gap: 7px;
  color: var(--navy-950);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 252, 247, 0.92);
  border-color: rgba(185, 144, 63, 0.28);
}

.contact-form .button {
  width: 100%;
}

summary::after {
  color: var(--navy-950);
  background: linear-gradient(135deg, rgba(240, 226, 197, 0.95), rgba(255, 252, 247, 0.72));
  border-color: rgba(185, 144, 63, 0.32);
}

details[open] summary::after {
  color: var(--surface-card);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-color: rgba(200, 167, 90, 0.34);
}

details {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(247, 243, 236, 0.88));
}

details[open] {
  border-color: rgba(185, 144, 63, 0.34);
  box-shadow:
    0 20px 58px rgba(7, 26, 46, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 86px);
  background:
    radial-gradient(circle at 80% 12%, rgba(185, 144, 63, 0.1), transparent 30%),
    radial-gradient(circle at 18% 0%, rgba(0, 124, 120, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(7, 26, 46, 0.99), rgba(11, 37, 60, 0.98));
}

.footer-brand {
  max-width: 520px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 26px;
  justify-content: end;
}

.footer-label {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-link-button {
  color: #d8e2e8;
  font-size: 13px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link-button {
  padding: 0;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.footer-links a:hover,
.footer-link-button:hover {
  color: var(--gold-soft);
  transform: translateX(2px);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  min-height: 38px;
  padding: 0;
  color: var(--surface-card);
  background: rgba(255, 252, 247, 0.06);
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-social a:hover {
  color: var(--navy-950);
  background: var(--gold-soft);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.footer-social span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-logo {
  width: min(300px, 80vw);
}

@media (max-width: 980px) {
  .footer,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .hero::before,
  .split::before,
  .clarity-section::before,
  .testimonials-section::before,
  .faq::before {
    width: 320px;
    height: 320px;
    opacity: 0.34;
  }

  .final-cta {
    margin-bottom: 24px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* TBT clarification pass */
.quick-access {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quick-access a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 13px;
  color: var(--navy-950);
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.9), rgba(240, 226, 197, 0.52));
  border: 1px solid rgba(185, 144, 63, 0.24);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(7, 26, 46, 0.07);
  font-size: 13px;
  font-weight: 800;
}

.portrait-meta em,
.signature-script {
  color: var(--gold-soft);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.about-section,
.document-section,
.aftercare-section,
.values-section {
  position: relative;
  overflow: hidden;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.about-section::after,
.document-section::after,
.values-section::after {
  position: absolute;
  right: -140px;
  bottom: -180px;
  z-index: 0;
  width: 430px;
  height: 430px;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.72), rgba(240, 226, 197, 0.16)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(185, 144, 63, 0.08) 19px 20px);
  border: 1px solid rgba(200, 167, 90, 0.12);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  opacity: 0.58;
  pointer-events: none;
  transform: rotate(14deg);
}

.about-section > *,
.document-section > *,
.aftercare-section > *,
.values-section > * {
  position: relative;
  z-index: 1;
}

.about-highlight {
  margin-top: 28px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.92), rgba(244, 239, 230, 0.72));
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 8px;
  box-shadow:
    0 18px 50px rgba(7, 26, 46, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.about-highlight p {
  margin-bottom: 14px;
  color: var(--navy-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.18;
}

.about-highlight strong {
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-copy {
  columns: 2 260px;
  column-gap: 34px;
}

.about-copy p {
  break-inside: avoid;
}

.about-copy .value-row {
  break-inside: avoid;
  columns: initial;
}

.service-card {
  min-height: 300px;
}

.service-points {
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid rgba(200, 167, 90, 0.2);
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 20px;
  color: #43515f;
  font-size: 13px;
  font-weight: 800;
}

.service-points li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal-700);
  border-radius: 50%;
  content: "";
}

.document-section {
  max-width: 1180px;
  margin-top: 10px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.8), rgba(244, 239, 230, 0.62)),
    repeating-linear-gradient(135deg, transparent 0 38px, rgba(185, 144, 63, 0.06) 39px 40px);
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 64px rgba(7, 26, 46, 0.06);
}

.document-section .section-heading {
  max-width: 900px;
}

.doc-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.doc-card,
.value-card {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 243, 236, 0.9));
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 8px;
  box-shadow:
    0 18px 50px rgba(7, 26, 46, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition: opacity 360ms ease, transform 360ms ease, box-shadow 220ms ease;
}

.doc-card p {
  margin-bottom: 18px;
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doc-card span,
.value-card p {
  color: var(--text-muted);
}

.aftercare-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.aftercare-panel {
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(145deg, rgba(7, 26, 46, 0.97), rgba(11, 37, 60, 0.93)),
    radial-gradient(circle at 90% 0%, rgba(185, 144, 63, 0.16), transparent 30%);
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.aftercare-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.aftercare-panel li {
  padding: 12px 14px;
  color: #e8f0f4;
  background: rgba(255, 252, 247, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.aftercare-note {
  margin-top: 18px;
  padding: 20px;
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 8px;
}

.aftercare-note p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.values-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 124, 120, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.56), rgba(244, 239, 230, 0.62));
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 16px;
}

.testimonial {
  gap: 22px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 202, 219, 0.72);
}

.testimonial-avatar {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  color: var(--navy-950);
  background:
    linear-gradient(135deg, rgba(240, 226, 197, 0.96), rgba(221, 237, 234, 0.82));
  border: 1px solid rgba(185, 144, 63, 0.24);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(7, 26, 46, 0.08);
  font-weight: 900;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-person figcaption,
.testimonial figcaption {
  margin: 0;
  padding: 0;
  border: 0;
}

.testimonial blockquote {
  padding-top: 18px;
}

.faq-list details p {
  max-height: 0;
}

.faq-list details[open] p {
  max-height: 520px;
}

.process-section {
  min-height: auto;
}

.process-step,
.process-step:nth-child(even) {
  align-items: start;
  grid-template-columns: minmax(170px, 0.38fr) minmax(0, 0.62fr);
}

.process-copy {
  min-height: 0;
}

.process-number {
  overflow-wrap: normal;
  white-space: nowrap;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
}

.footer-social .social-icon {
  width: 19px;
  height: 19px;
}

.social-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-social span {
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.social-row a {
  gap: 8px;
}

.footer {
  position: relative;
}

.footer::before {
  position: absolute;
  inset: 16px clamp(18px, 4vw, 60px) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 167, 90, 0.32), transparent);
  content: "";
}

@media (max-width: 980px) {
  .about-section,
  .aftercare-section {
    grid-template-columns: 1fr;
  }

  .doc-grid,
  .value-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-section {
    min-height: auto;
  }

  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 74px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .quick-access,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .quick-access a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-copy {
    columns: initial;
  }

  .doc-grid,
  .value-grid,
  .aftercare-panel ul,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .document-section,
  .values-section,
  .aftercare-section {
    margin-right: 12px;
    margin-left: 12px;
  }

  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 1fr;
  }
}

/* Client refinement pass */
.mission-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin-top: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.86), rgba(244, 239, 230, 0.68)),
    radial-gradient(circle at 88% 12%, rgba(0, 124, 120, 0.08), transparent 34%),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(185, 144, 63, 0.055) 35px 36px);
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 16px;
  box-shadow:
    0 22px 68px rgba(7, 26, 46, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mission-section::before,
.mission-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.mission-section::before {
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
  background:
    linear-gradient(135deg, rgba(221, 237, 234, 0.5), rgba(240, 226, 197, 0.22)),
    repeating-linear-gradient(45deg, transparent 0 15px, rgba(185, 144, 63, 0.1) 16px 17px);
  border: 1px solid rgba(200, 167, 90, 0.14);
  border-radius: 26px;
  opacity: 0.65;
  transform: rotate(14deg);
}

.mission-section::after {
  bottom: 34px;
  left: 44%;
  width: 180px;
  height: 180px;
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(0, 124, 120, 0.1) 46% 48%, transparent 49%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.45), rgba(240, 226, 197, 0.1));
  border: 1px solid rgba(200, 167, 90, 0.12);
  border-radius: 22px;
  opacity: 0.7;
  transform: rotate(-18deg);
}

.mission-copy,
.mission-portrait {
  position: relative;
  z-index: 1;
}

.mission-copy {
  max-width: 650px;
}

.mission-copy p:not(.eyebrow) {
  color: #3d4c5d;
  font-size: 17px;
}

.mission-portrait {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(185, 144, 63, 0.22);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.mission-portrait img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: 54% 48%;
}

.mission-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 5px;
  max-width: 300px;
  padding: 17px 19px;
  color: #fff;
  background: rgba(7, 26, 46, 0.78);
  border: 1px solid rgba(240, 226, 197, 0.26);
  border-radius: 10px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.mission-card span {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-card strong {
  font-size: 18px;
}

.mission-card em {
  color: var(--gold-soft);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 30px;
  font-style: normal;
  line-height: 1;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 26px 24px;
}

.service-card h3 {
  min-height: 52px;
}

.service-card p {
  font-size: 15px;
}

.service-points {
  margin-top: auto;
}

.service-points li {
  font-size: 12px;
  line-height: 1.45;
}

.contact-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 0.94fr);
  align-items: center;
  padding-top: clamp(70px, 7vw, 104px);
  padding-bottom: clamp(70px, 7vw, 104px);
  background:
    radial-gradient(circle at 14% 22%, rgba(0, 124, 120, 0.2), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(185, 144, 63, 0.13), transparent 27%),
    linear-gradient(135deg, rgba(7, 26, 46, 0.98), rgba(11, 37, 60, 0.96));
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}

.contact-lines a.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px 10px 11px;
  color: #f7fbff;
  background: rgba(255, 252, 247, 0.07);
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-lines a.contact-pill:hover {
  background: rgba(0, 124, 120, 0.22);
  border-color: rgba(0, 155, 146, 0.45);
  transform: translateY(-2px);
}

.contact-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-soft), rgba(255, 252, 247, 0.82));
  border-radius: 50%;
}

.contact-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.045), rgba(255, 252, 247, 0.018));
  border: 1px solid rgba(240, 226, 197, 0.2);
  border-radius: 14px;
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-form label {
  color: rgba(247, 252, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form label:has(textarea),
.contact-form .form-consent,
.contact-form .button,
.contact-form .form-notice {
  grid-column: 1 / -1;
}

.contact-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(247, 252, 255, 0.76);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.contact-form .form-consent input {
  flex: 0 0 auto;
  width: auto;
  margin-top: 3px;
}

.contact-form .form-consent a {
  color: var(--gold-soft);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  color: #fff;
  background: rgba(255, 252, 247, 0.055);
  border-color: rgba(240, 226, 197, 0.24);
  border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 155, 146, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 155, 146, 0.14);
}

.contact-form .button.primary {
  margin-top: 2px;
  color: #fff;
}

.footer {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(26px, 4vw, 58px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 330px;
}

.footer-links a,
.footer-link-button {
  white-space: nowrap;
}

.footer-links a:hover {
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .mission-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .mission-portrait,
  .mission-portrait img {
    min-height: 420px;
  }

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

  .contact-page-intro {
    justify-items: start;
    text-align: left;
  }

  .contact-page-intro h1 {
    white-space: normal;
  }

  .contact-page-details {
    justify-items: start;
    text-align: left;
  }

  .contact-page .contact-lines {
    justify-content: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .mission-section {
    margin-right: 12px;
    margin-left: 12px;
  }

  .mission-portrait,
  .mission-portrait img {
    min-height: 360px;
  }

  .service-card h3 {
    min-height: 0;
  }

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

  .contact-lines {
    display: grid;
  }

  .contact-lines a.contact-pill {
    width: 100%;
  }

  .footer-nav,
  .footer-links {
    display: grid;
    justify-content: stretch;
  }
}

/* Compact footer, softer signature and balanced services */
.portrait-meta,
.mission-card {
  background:
    linear-gradient(135deg, rgba(7, 26, 46, 0.46), rgba(11, 37, 60, 0.32));
  border-color: rgba(240, 226, 197, 0.34);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(1.1);
}

.portrait-meta em,
.mission-card em,
.signature-script {
  color: #f2dfb8;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transform: rotate(-2deg);
}

.mission-card em {
  margin-top: 2px;
  font-size: 36px;
}

.about-lead {
  margin-top: clamp(42px, 6vw, 82px);
}

.about-lead .mission-copy h1 {
  max-width: 650px;
  font-size: clamp(42px, 5vw, 68px);
}

.about-office-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 0.78fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  max-width: 1180px;
  margin-top: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 124, 120, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.88), rgba(244, 239, 230, 0.68));
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 16px;
  box-shadow: 0 22px 68px rgba(7, 26, 46, 0.07);
}

.about-office-section img {
  width: 100%;
  min-height: 360px;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-office-section .prose {
  max-width: 520px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 0;
  padding: 24px;
}

.service-card h3 {
  min-height: 0;
  margin-bottom: 18px;
}

.service-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.58;
}

.service-card:nth-child(4) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 16px 36px;
  align-items: start;
  min-height: 0;
  padding: 26px 28px;
}

.service-card:nth-child(4) span {
  grid-column: 1;
}

.service-card:nth-child(4) h3,
.service-card:nth-child(4) p {
  grid-column: 1;
}

.service-card:nth-child(4) .service-points {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.service-card:nth-child(4) .service-points li {
  padding: 13px 14px 13px 36px;
  background: rgba(221, 237, 234, 0.45);
  border: 1px solid rgba(0, 124, 120, 0.14);
  border-radius: 8px;
  font-size: 13px;
}

.service-card:nth-child(4) .service-points li::before {
  top: 18px;
  left: 16px;
}

.footer {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: 28px clamp(148px, 10vw, 190px) 28px clamp(22px, 4vw, 60px);
}

.footer-logo {
  width: min(218px, 64vw);
  padding: 5px 8px;
}

.footer-brand {
  max-width: 390px;
}

.footer p {
  max-width: 380px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.footer-nav {
  justify-content: center;
  gap: clamp(34px, 5vw, 80px);
}

.footer-label {
  margin-bottom: 9px;
  text-align: center;
}

.footer-links {
  justify-content: center;
  max-width: 430px;
  gap: 8px 18px;
}

.footer-social {
  justify-content: center;
}

.footer::before {
  top: 10px;
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(4) {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(4) span,
  .service-card:nth-child(4) h3,
  .service-card:nth-child(4) p,
  .service-card:nth-child(4) .service-points {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card:nth-child(4) .service-points {
    margin-top: 18px;
  }
}

@media (max-width: 980px) {
  .about-office-section {
    grid-template-columns: 1fr;
  }

  .about-office-section img {
    min-height: 320px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-right: clamp(22px, 4vw, 60px);
  }

  .footer-brand,
  .footer p {
    max-width: none;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-label {
    text-align: left;
  }

  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }
}

/* Multi-page architecture */
.menu-toggle {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 4px;
  width: 270px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 239, 230, 0.95));
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(7, 26, 46, 0.15);
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 10px 11px;
  border-radius: 7px;
  white-space: normal;
}

.subpage-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 92px) 18px clamp(38px, 6vw, 76px);
  overflow: hidden;
}

.subpage-hero::before {
  position: absolute;
  right: -110px;
  bottom: 22px;
  width: 360px;
  height: 360px;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.65), rgba(240, 226, 197, 0.2)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(185, 144, 63, 0.08) 19px 20px);
  border: 1px solid rgba(200, 167, 90, 0.14);
  border-radius: 28px;
  opacity: 0.58;
  pointer-events: none;
  transform: rotate(13deg);
}

.subpage-hero > * {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  max-width: 760px;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #3d4c5d;
  font-size: clamp(17px, 1.5vw, 21px);
}

.subpage-hero img {
  width: 100%;
  height: min(470px, 46vw);
  min-height: 320px;
  object-fit: cover;
  border: 1px solid rgba(185, 144, 63, 0.22);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.home-services {
  padding-top: 48px;
}

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

.home-service-grid .service-card:nth-child(4),
.page-service-grid .service-card:nth-child(4) {
  grid-column: auto;
  display: flex;
  grid-template-columns: none;
  gap: 0;
  padding: 24px;
}

.home-service-grid .service-card:nth-child(4) span,
.home-service-grid .service-card:nth-child(4) h3,
.home-service-grid .service-card:nth-child(4) p,
.page-service-grid .service-card:nth-child(4) span,
.page-service-grid .service-card:nth-child(4) h3,
.page-service-grid .service-card:nth-child(4) p {
  grid-column: auto;
}

.service-card-link a,
.doc-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 900;
}

.process-section,
.process-section-short {
  min-height: auto;
  margin-top: 26px;
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 124, 120, 0.18), transparent 30%),
    radial-gradient(circle at 84% 34%, rgba(185, 144, 63, 0.12), transparent 32%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, rgba(7, 26, 46, 0.96), rgba(11, 37, 60, 0.98));
  background-attachment: scroll;
}

.process-section::before {
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.98), rgba(7, 26, 46, 0));
}

.process-section::after {
  background: linear-gradient(0deg, rgba(247, 243, 236, 0.98), rgba(7, 26, 46, 0));
}

.process-section-short .process-intro {
  position: relative;
  top: auto;
}

.process-section-short .process-timeline {
  gap: 28px;
}

.aftercare-compact {
  align-items: center;
}

.section-link {
  margin-top: 18px;
}

.two-column-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.check-panel {
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(7, 26, 46, 0.97), rgba(11, 37, 60, 0.93));
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.check-panel h3 {
  color: #fff;
}

.check-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.check-panel li {
  position: relative;
  padding-left: 24px;
  color: #d9e5ef;
}

.check-panel li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--teal-600);
  border-radius: 50%;
  content: "";
}

.contact-page {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: calc(100vh - 180px);
  gap: 24px;
  padding-top: clamp(48px, 5vw, 68px);
}

.contact-section h1,
.contact-page h1 {
  color: #fff;
}

.contact-page-intro {
  display: grid;
  justify-items: center;
  max-width: 1160px;
  text-align: center;
}

.contact-page-intro h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(32px, 3.2vw, 46px);
  white-space: nowrap;
}

.contact-page-details {
  display: grid;
  justify-items: center;
  width: min(920px, 100%);
  text-align: center;
}

.contact-page-details p {
  max-width: 760px;
  color: #dce9f2;
  font-size: 18px;
}

.contact-page .contact-lines {
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin-top: 18px;
  padding-top: 18px;
}

.contact-form-wrap {
  width: min(760px, 100%);
  margin-top: 4px;
}

body:has(.contact-page) .whatsapp-float {
  display: none;
}

@media (max-width: 1120px) {
  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: inline-grid;
    grid-template-columns: 18px auto;
    grid-template-rows: repeat(3, 2px);
    align-items: center;
    gap: 4px 8px;
    padding: 9px 11px;
    color: var(--navy-950);
    background: rgba(255, 252, 247, 0.9);
    border: 1px solid rgba(185, 144, 63, 0.22);
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    grid-column: 1;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }

  .menu-toggle strong {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    margin-left: 0;
    font-size: 12px;
  }

  .nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    z-index: 40;
    display: grid;
    gap: 6px;
    max-height: calc(100vh - 96px);
    width: auto;
    max-width: none;
    padding: 14px;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 239, 230, 0.96));
    border: 1px solid rgba(200, 167, 90, 0.26);
    border-radius: 14px;
    box-shadow: 0 24px 72px rgba(7, 26, 46, 0.18);
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav a,
  .nav .nav-cta {
    justify-content: flex-start;
    width: 100%;
    border-radius: 8px;
  }

  .nav-dropdown-menu {
    position: static;
    width: auto;
    margin: 0 0 4px 12px;
    padding: 0;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .subpage-hero,
  .two-column-content {
    grid-template-columns: 1fr;
  }

  .subpage-hero img {
    height: 360px;
  }
}

@media (max-width: 720px) {
  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    padding-top: 34px;
  }

  .subpage-hero img {
    min-height: 280px;
    height: 300px;
  }
}

/* Contact page final layout order */
.contact-page {
  gap: clamp(22px, 3vw, 34px);
  padding-top: clamp(48px, 5vw, 76px);
}

.contact-page-intro {
  width: min(980px, 100%);
  max-width: calc(100vw - 48px);
  justify-items: center;
  justify-self: center;
  text-align: center;
}

.contact-page-intro h1 {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(30px, 2.45vw, 42px);
  text-align: center;
  white-space: nowrap;
}

.contact-page .contact-form-wrap,
.contact-page .contact-page-details {
  width: min(980px, 100%);
  max-width: calc(100vw - 48px);
  justify-self: center;
}

.contact-form-wrap {
  scroll-margin-top: 112px;
}

.contact-page-details {
  justify-items: center;
  text-align: center;
}

.contact-page .contact-lines {
  justify-content: center;
}

@media (max-width: 980px) {
  .contact-page-intro,
  .contact-page-details {
    justify-items: center;
    text-align: center;
  }

  .contact-page-intro h1 {
    font-size: clamp(34px, 9vw, 42px);
    white-space: normal;
  }

  .contact-page .contact-lines {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .contact-page {
    padding-top: 38px;
  }

  .contact-page-intro h1 {
    width: min(100%, 430px);
  }
}

/* Contact alignment hard override */
.contact-section.contact-page {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: 18px;
  padding-left: 18px;
}

.contact-section.contact-page > .contact-page-intro,
.contact-section.contact-page > .contact-form-wrap,
.contact-section.contact-page > .contact-page-details {
  width: min(980px, calc(100vw - 48px));
  max-width: min(980px, calc(100vw - 48px));
  margin-right: auto;
  margin-left: auto;
}

.contact-section.contact-page > .contact-page-intro {
  display: block;
  text-align: center;
}

.contact-section.contact-page .contact-page-intro h1 {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(30px, 2.1vw, 38px);
  text-align: center;
}

.contact-section.contact-page .contact-form {
  width: 100%;
}

/* Hero proof cards and signature refinement */
.hero-stats {
  max-width: 660px;
  gap: 14px;
}

.hero-stats div {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 112px;
  padding: 20px 18px 18px;
  overflow: hidden;
  gap: 7px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(247, 240, 228, 0.86));
  border-color: rgba(200, 167, 90, 0.32);
  box-shadow:
    0 18px 42px rgba(7, 26, 46, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
  animation: proof-card-rise 620ms ease both;
}

.hero-stats div:nth-child(2) {
  animation-delay: 80ms;
}

.hero-stats div:nth-child(3) {
  animation-delay: 160ms;
}

.hero-stats div::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--teal-700), rgba(200, 167, 90, 0.9));
  opacity: 0.72;
}

.hero-stats div::after {
  position: absolute;
  top: -46px;
  right: -42px;
  z-index: -1;
  width: 118px;
  height: 118px;
  content: "";
  background: radial-gradient(circle, rgba(0, 124, 120, 0.14), transparent 64%);
  opacity: 0.72;
  transition: opacity 220ms ease, transform 220ms ease;
  animation: proof-card-glow 5.2s ease-in-out infinite;
}

.hero-stats div:nth-child(2)::after {
  animation-delay: 0.7s;
}

.hero-stats div:nth-child(3)::after {
  animation-delay: 1.4s;
}

.hero-stats div:hover {
  border-color: rgba(0, 124, 120, 0.34);
  box-shadow:
    0 24px 56px rgba(7, 26, 46, 0.14),
    0 12px 30px rgba(0, 124, 120, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.94) inset;
  transform: translateY(-5px);
}

.hero-stats div:hover::after {
  opacity: 1;
  transform: translate(-6px, 6px) scale(1.08);
}

.hero-stats strong {
  color: var(--navy-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.05;
}

.hero-stats span {
  max-width: 18ch;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.portrait-meta em {
  color: #d9c18b;
  display: inline-block;
  justify-self: start;
  margin-top: 3px;
  font-family: "Ink Free", "Segoe Print", "Bradley Hand ITC", "Lucida Handwriting", cursive;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  opacity: 0.9;
  text-shadow: 0 0.4px 0 rgba(255, 252, 247, 0.3);
  transform: rotate(-2.5deg) skewX(-3deg);
}

.signature-mark {
  display: block;
  width: 118px;
  height: auto;
  margin-top: 6px;
  overflow: visible;
}

.signature-mark text {
  fill: #d8bd82;
  font-family: "Ink Free", "Segoe Print", "Bradley Hand ITC", "Lucida Handwriting", cursive;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1.2px;
  opacity: 0.92;
  transform: rotate(-4deg);
  transform-origin: 36px 30px;
}

.signature-mark path {
  fill: none;
  stroke: rgba(216, 189, 130, 0.58);
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: 0.72;
}

@keyframes proof-card-rise {
  from {
    transform: translateY(12px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes proof-card-glow {
  0%,
  100% {
    opacity: 0.52;
    transform: translate(0, 0) scale(1);
  }

  50% {
    opacity: 0.9;
    transform: translate(-5px, 5px) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stats div {
    animation: none;
    transition: none;
  }

  .hero-stats div:hover {
    transform: none;
  }

  .hero-stats div::after {
    animation: none;
  }
}

@media (max-width: 720px) {
  .hero-copy,
  .hero-lead {
    width: min(100%, 332px);
  }

  .hero-copy h1 {
    width: min(100%, 332px);
    font-size: 32px;
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-stats {
    width: min(100%, 340px);
    gap: 10px;
  }

  .hero-stats div {
    min-height: auto;
    padding: 16px;
  }

  .hero-stats strong {
    font-size: 23px;
  }

  .hero-stats span {
    max-width: none;
  }

  .portrait-meta em {
    font-size: 28px;
  }

  .signature-mark {
    width: 112px;
  }
}

/* Process timeline reveal refinement */
.process-step {
  opacity: 1;
  transform: none;
}

.process-number {
  opacity: 0.38;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1),
    text-shadow 520ms ease;
}

.process-number::after {
  opacity: 0;
  transform: scale(0.55);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 520ms ease;
}

.process-copy {
  opacity: 0;
  filter: blur(8px);
  transform: translate(34px, 34px) scale(0.965);
  transform-origin: left center;
  transition:
    opacity 560ms ease,
    filter 620ms ease,
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
  will-change: transform, opacity, filter;
}

.process-step:nth-child(even) .process-copy {
  transform: translate(-34px, 34px) scale(0.965);
  transform-origin: right center;
}

.process-step.is-revealed .process-number {
  opacity: 0.9;
  transform: translateY(0) scale(1);
}

.process-step.is-revealed .process-number::after {
  opacity: 1;
  transform: scale(1);
}

.process-step.is-revealed .process-copy {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1);
}

.process-step.is-active .process-number {
  opacity: 1;
  text-shadow:
    0 18px 46px rgba(0, 0, 0, 0.3),
    0 0 34px rgba(255, 255, 255, 0.14);
  transform: translateY(-2px) scale(1.025);
}

.process-step.is-active .process-number::after {
  box-shadow:
    0 0 34px rgba(216, 179, 90, 0.48),
    0 0 22px rgba(0, 169, 157, 0.32);
}

.process-step.is-active .process-copy {
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 169, 157, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(10, 24, 48, 0.68);
}

@media (max-width: 980px) {
  .process-copy,
  .process-step:nth-child(even) .process-copy {
    transform: translateY(28px) scale(0.97);
    transform-origin: center top;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-number,
  .process-number::after,
  .process-copy {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Shared premium card motion */
.service-card,
.doc-card,
.value-card,
.testimonial,
.clarity-grid li {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(247, 240, 228, 0.86));
  border-color: rgba(200, 167, 90, 0.28);
  box-shadow:
    0 18px 42px rgba(7, 26, 46, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
  isolation: isolate;
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-card::before,
.doc-card::before,
.value-card::before,
.testimonial::before,
.clarity-grid li::after {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--teal-700), rgba(200, 167, 90, 0.9));
  opacity: 0.58;
  pointer-events: none;
}

.service-card::after,
.doc-card::after,
.value-card::after {
  position: absolute;
  top: -56px;
  right: -50px;
  z-index: -1;
  width: 140px;
  height: 140px;
  content: "";
  background: radial-gradient(circle, rgba(0, 124, 120, 0.13), transparent 64%);
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  animation: proof-card-glow 5.6s ease-in-out infinite;
}

.service-card:nth-child(2n)::after,
.doc-card:nth-child(2n)::after,
.value-card:nth-child(2n)::after {
  animation-delay: 0.75s;
}

.service-card:nth-child(3n)::after,
.doc-card:nth-child(3n)::after,
.value-card:nth-child(3n)::after {
  animation-delay: 1.35s;
}

.service-card,
.doc-card,
.value-card,
.testimonial,
.clarity-grid li {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(18px) scale(0.985);
}

.service-card.is-visible,
.doc-card.is-visible,
.value-card.is-visible,
.testimonial.is-visible,
.clarity-grid li.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.service-card.is-visible:hover,
.doc-card.is-visible:hover,
.value-card.is-visible:hover,
.testimonial.is-visible:hover,
.clarity-grid li.is-visible:hover {
  border-color: rgba(0, 124, 120, 0.34);
  box-shadow:
    0 24px 56px rgba(7, 26, 46, 0.13),
    0 12px 30px rgba(0, 124, 120, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.94) inset;
  transform: translateY(-6px) scale(1.006);
}

.service-card.is-visible:hover::after,
.doc-card.is-visible:hover::after,
.value-card.is-visible:hover::after {
  opacity: 1;
  transform: translate(-7px, 7px) scale(1.08);
}

.service-card span {
  box-shadow:
    0 10px 22px rgba(185, 144, 63, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .doc-card,
  .value-card,
  .testimonial,
  .clarity-grid li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card::after,
  .doc-card::after,
  .value-card::after {
    animation: none;
  }

  .service-card.is-visible:hover,
  .doc-card.is-visible:hover,
  .value-card.is-visible:hover,
  .testimonial.is-visible:hover,
  .clarity-grid li.is-visible:hover {
    transform: none;
  }
}

/* Clean warm card override */
.service-card,
.doc-card,
.value-card,
.testimonial,
.clarity-grid li {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(249, 244, 235, 0.94));
  border-color: rgba(200, 167, 90, 0.2);
  box-shadow:
    0 18px 46px rgba(7, 26, 46, 0.07),
    0 8px 22px rgba(185, 144, 63, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.service-card::before,
.doc-card::before,
.value-card::before,
.testimonial::before,
.clarity-grid li::after,
.service-card::after,
.doc-card::after,
.value-card::after {
  display: none;
}

.service-card.is-visible:hover,
.doc-card.is-visible:hover,
.value-card.is-visible:hover,
.testimonial.is-visible:hover,
.clarity-grid li.is-visible:hover {
  border-color: rgba(185, 144, 63, 0.28);
  box-shadow:
    0 26px 62px rgba(7, 26, 46, 0.11),
    0 14px 34px rgba(185, 144, 63, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

.service-card span {
  background: rgba(240, 226, 197, 0.62);
  border: 1px solid rgba(200, 167, 90, 0.18);
  box-shadow:
    0 8px 18px rgba(185, 144, 63, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

/* Professional clean card polish */
.service-card,
.doc-card,
.value-card,
.testimonial,
.clarity-grid li {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(248, 243, 234, 0.96));
  border: 1px solid rgba(200, 167, 90, 0.18);
  box-shadow:
    0 22px 58px rgba(7, 26, 46, 0.075),
    0 10px 24px rgba(185, 144, 63, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.service-card::before,
.doc-card::before,
.value-card::before,
.testimonial::before,
.clarity-grid li::after {
  display: block;
  position: absolute;
  inset: 0;
  height: auto;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 46%);
  opacity: 0.62;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.service-card::after,
.doc-card::after,
.value-card::after {
  display: none;
}

.service-card h3,
.doc-card h3,
.value-card h3 {
  transition: color 220ms ease, transform 220ms ease;
}

.service-card span {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.service-card-link a,
.doc-card a {
  transition: color 180ms ease, transform 180ms ease;
}

.service-card.is-visible,
.doc-card.is-visible,
.value-card.is-visible,
.testimonial.is-visible,
.clarity-grid li.is-visible {
  animation: clean-card-rise 1280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-grid .service-card:nth-child(2),
.doc-grid .doc-card:nth-child(2),
.value-grid .value-card:nth-child(2),
.testimonial-grid .testimonial:nth-child(2) {
  animation-delay: 140ms;
}

.service-grid .service-card:nth-child(3),
.doc-grid .doc-card:nth-child(3),
.value-grid .value-card:nth-child(3),
.testimonial-grid .testimonial:nth-child(3) {
  animation-delay: 280ms;
}

.service-grid .service-card:nth-child(4),
.doc-grid .doc-card:nth-child(4),
.value-grid .value-card:nth-child(4) {
  animation-delay: 420ms;
}

.service-grid .service-card:nth-child(5),
.doc-grid .doc-card:nth-child(5),
.value-grid .value-card:nth-child(5) {
  animation-delay: 560ms;
}

.service-card.is-visible:hover,
.doc-card.is-visible:hover,
.value-card.is-visible:hover,
.testimonial.is-visible:hover,
.clarity-grid li.is-visible:hover {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 1), rgba(250, 245, 237, 0.98));
  border-color: rgba(185, 144, 63, 0.26);
  box-shadow:
    0 30px 76px rgba(7, 26, 46, 0.12),
    0 16px 36px rgba(185, 144, 63, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-6px);
}

.service-card.is-visible:hover::before,
.doc-card.is-visible:hover::before,
.value-card.is-visible:hover::before,
.testimonial.is-visible:hover::before,
.clarity-grid li.is-visible:hover::after {
  opacity: 0.92;
}

.service-card.is-visible:hover h3,
.doc-card.is-visible:hover h3,
.value-card.is-visible:hover h3 {
  color: var(--navy-950);
  transform: translateY(-1px);
}

.service-card.is-visible:hover span {
  background: rgba(240, 226, 197, 0.78);
  border-color: rgba(185, 144, 63, 0.24);
  box-shadow:
    0 12px 24px rgba(185, 144, 63, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-2px);
}

.service-card-link.is-visible:hover a,
.doc-card.is-visible:hover a {
  color: var(--teal-700);
  transform: translateX(2px);
}

@keyframes clean-card-rise {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(58px) scale(0.965);
  }

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

/* Clean home hero proof cards */
.hero-stats div {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(249, 244, 235, 0.96));
  border-color: rgba(200, 167, 90, 0.18);
  box-shadow:
    0 22px 58px rgba(7, 26, 46, 0.075),
    0 10px 24px rgba(185, 144, 63, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation-duration: 860ms;
}

.hero-stats div::before,
.hero-stats div::after {
  display: none;
}

.hero-stats div:hover {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 1), rgba(250, 245, 237, 0.98));
  border-color: rgba(185, 144, 63, 0.26);
  box-shadow:
    0 30px 76px rgba(7, 26, 46, 0.12),
    0 16px 36px rgba(185, 144, 63, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-5px);
}
