/* Core palette */
:root {
  --navy: #0f2342;
  --navy-dark: #081629;
  --accent: #b76645;
  --accent-dark: #965038;
  --bg: #f7f2eb;
  --bg-light: #fbf8f3;
  --white: #ffffff;
  --text: #1d2430;
  --muted: #626b78;
  --border: #e6ddd2;
  --shadow: rgba(15, 35, 66, 0.08);
  --shadow-dark: rgba(15, 35, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent-dark);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(230,221,210,0.9);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

.brand {
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

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

.site-nav a,
.nav-dropdown-toggle {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--accent-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(21rem, calc(100vw - 2rem));
  padding: 0.65rem;
  border: 1px solid rgba(230, 221, 210, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(15, 35, 66, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0.35rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

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

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: translateY(0.08rem) rotate(225deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  line-height: 1.35;
  white-space: normal;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--bg-light);
}

.site-nav a.cta {
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  padding: 5rem 0 0;
  background: linear-gradient(180deg, rgba(247,242,235,0.98), rgba(251,248,243,1));
  overflow: hidden;
}

.service-hero {
  position: relative;
  padding: 6rem 0 5rem;
  background:
    radial-gradient(circle at 10% 12%, rgba(183, 102, 69, 0.08), transparent 24rem),
    linear-gradient(180deg, #fbf8f3 0%, #f7f2eb 100%);
}

.service-hero .hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 4rem;
  min-height: auto;
  align-items: center;
}

.service-hero .hero-copy {
  max-width: 780px;
  padding-bottom: 0;
}

.service-hero-visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.service-hero-blob {
  position: absolute;
  width: min(440px, 92%);
  aspect-ratio: 1.12;
  border-radius: 45% 55% 52% 48% / 48% 44% 56% 52%;
  background: #efe5d8;
  transform: rotate(-8deg);
  box-shadow: inset 0 0 0 1px rgba(183, 102, 69, 0.08), 0 24px 70px rgba(15, 35, 66, 0.08);
}

.service-hero-image {
  position: relative;
  z-index: 1;
  width: min(600px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(15, 35, 66, 0.12));
}

.service-hero-visual::before,
.service-hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(183, 102, 69, 0.22);
  pointer-events: none;
}

.service-hero-visual::before {
  width: 7rem;
  height: 7rem;
  right: 5%;
  top: 7%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.service-hero-visual::after {
  width: 8.5rem;
  height: 1px;
  left: 6%;
  bottom: 15%;
  border-width: 0;
  background: linear-gradient(90deg, transparent, rgba(183, 102, 69, 0.38), transparent);
}

.strategy-illustration {
  position: relative;
  width: min(470px, 100%);
  height: auto;
  z-index: 1;
  overflow: visible;
}

.illustration-line,
.illustration-card,
.illustration-node,
.illustration-person {
  fill: none;
  stroke: var(--navy);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.illustration-line.soft {
  stroke: rgba(15, 35, 66, 0.22);
  stroke-width: 3;
}

.illustration-line.thin {
  stroke-width: 3;
}

.illustration-card {
  fill: rgba(255, 255, 255, 0.5);
  stroke: rgba(15, 35, 66, 0.42);
}

.illustration-node {
  fill: #fbf8f3;
  stroke: var(--accent);
}

.illustration-person {
  fill: #fbf8f3;
  stroke: rgba(15, 35, 66, 0.55);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 4rem;
  align-items: end;
  min-height: min(620px, calc(100vh - 96px));
}

.hero-copy {
  max-width: 50rem;
  padding-bottom: 5rem;
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
  font-weight: 900;
  font-family: "Times New Roman", serif;
}

.handwritten-note {
  position: absolute;
  top: 5.2rem;
  right: 0;
  width: min(11rem, 32%);
  font-family: "Segoe Print", "Bradley Hand ITC", "Comic Sans MS", cursive;
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  line-height: 1.32;
  color: var(--accent);
  transform: rotate(-7deg);
  margin: 0;
  text-align: left;
  font-weight: 600;
}

.handwritten-note::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: calc(100% + 0.45rem);
  width: 4.8rem;
  height: 2.6rem;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg width='108' height='58' viewBox='0 0 108 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 35C20 17 45 10 66 19C78 24 86 34 96 41' stroke='%23b76645' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M84 42C90 41 96 41 103 44' stroke='%23b76645' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M96 31C97 36 100 41 104 46' stroke='%23b76645' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(8deg);
  opacity: 0.9;
}

.hero-image {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
}

.hero-image img {
  width: min(560px, 100%);
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: 50% 12%;
  transform: translateY(3px);
}

.services-section {
  padding: 6rem 0;
}

.section-intro {
  max-width: 58rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-intro p {
  margin: 0 0 1rem;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.35rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px var(--shadow-dark);
  border-color: rgba(211, 122, 92, 0.45);
}

.service-card:focus-visible {
  outline: 3px solid rgba(211, 122, 92, 0.3);
  outline-offset: 4px;
}

.card-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #d37a5c;
  border-radius: 50%;
  background: #faf4ef;
  color: #d37a5c;
}

.card-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-grid .service-card > h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.3;
  font-weight: 800;
}

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

.card-link {
  margin-top: 1.35rem;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.service-card:hover .card-link,
.service-card:focus-visible .card-link {
  color: var(--accent-dark);
}

.why-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 20px 50px var(--shadow-dark);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.item-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #d37a5c;
  border-radius: 50%;
  background: #faf4ef;
  color: #d37a5c;
}

.item-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-banner {
  background: var(--navy-dark);
  color: var(--white);
  padding: 5rem 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-text h2 {
  margin: 0 0 2rem;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.cta-copy p {
  margin: 0 0 2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.hero-subtitle {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
}

.hero-copy p {
  margin: 1.5rem 0;
  color: var(--muted);
  max-width: 45rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.note {
  margin-top: 2rem;
  margin-bottom: 3rem;
  color: var(--navy);
  font-weight: 600;
  font-style: italic;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.button {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(183,102,69,0.25);
}

.button.primary {
  padding: 1.2rem 2rem;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 20px 35px rgba(183,102,69,0.2);
}

.button.secondary {
  padding: 1.2rem 2rem;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--accent);
}

.service-section,
.feature-section,
.cta-section,
.contact-section {
  padding: 6rem 0;
}

.service-section h2,
.feature-section h2,
.cta-section h2,
.contact-section h2 {
  position: relative;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 3.5vw, 3.75rem);
  line-height: 1.05;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-page-section {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.service-page-section::before {
  content: "";
  position: absolute;
  top: 3.25rem;
  right: 1rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(183, 102, 69, 0.13);
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  pointer-events: none;
}

.service-page-section.section-soft {
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(250, 244, 239, 0.92)),
    radial-gradient(circle at 92% 14%, rgba(183, 102, 69, 0.08), transparent 18rem);
}

.section-eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-page-section > h2::after,
.interactive-card-section > h2::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 2px;
  margin-top: 1.15rem;
  background: linear-gradient(90deg, var(--accent), rgba(183, 102, 69, 0));
}

.service-section p,
.feature-copy p,
.contact-copy p,
.cta-section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px var(--shadow);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px var(--shadow-dark);
}

.card h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 700;
}

.card .claim {
  margin: 0 0 1.5rem;
  color: var(--accent-dark);
  font-weight: 600;
  line-height: 1.5;
  font-size: 1rem;
}

.card p {
  margin: 0 0 2rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.interactive-card-section .cards-grid,
.interactive-card-section .feature-copy {
  align-items: stretch;
}

.interactive-card-section .feature-grid {
  display: block;
}

.interactive-card-section .feature-copy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.interactive-card {
  min-height: 350px;
  padding: 0;
  cursor: pointer;
  perspective: 1200px;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
}

.interactive-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.interactive-card:focus-visible .interactive-card-face {
  outline: 3px solid rgba(183, 102, 69, 0.35);
  outline-offset: 4px;
}

.interactive-card-inner {
  position: relative;
  min-height: 350px;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.interactive-card[aria-expanded="true"] .interactive-card-inner {
  transform: rotateY(180deg);
}

.interactive-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    var(--white);
  box-shadow: 0 15px 35px var(--shadow);
  backface-visibility: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.interactive-card-front::before {
  content: "";
  position: absolute;
  right: -2.4rem;
  top: -2.4rem;
  width: 7.5rem;
  height: 7.5rem;
  border: 1px solid rgba(183, 102, 69, 0.18);
  border-radius: 50%;
}

.interactive-card-front::after {
  content: "";
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 4.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(183, 102, 69, 0), rgba(183, 102, 69, 0.45));
}

.interactive-card-illustration {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  margin: 0 0 1.15rem;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.interactive-card-illustration.small {
  width: 64px;
  height: 64px;
  margin-bottom: 0.85rem;
}

.interactive-card:hover .interactive-card-face,
.interactive-card:focus-visible .interactive-card-face {
  border-color: rgba(183, 102, 69, 0.35);
  box-shadow: 0 25px 50px var(--shadow-dark);
}

.interactive-card-back {
  transform: rotateY(180deg);
  background:
    linear-gradient(135deg, #faf4ef, #f7f2eb),
    var(--bg-light);
}

.interactive-card-section .feature-copy article {
  margin-bottom: 0;
}

.interactive-card-icon {
  position: relative;
  display: inline-flex;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(183, 102, 69, 0.28);
  background: rgba(183, 102, 69, 0.07);
  color: var(--accent-dark);
  flex: 0 0 auto;
}

.interactive-card-icon::before,
.interactive-card-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.strategy-icon-priority::before {
  left: 1rem;
  top: 1.25rem;
  width: 1.15rem;
  height: 0.72rem;
  border-width: 0 0 2px 2px;
  border-style: solid;
  transform: rotate(-45deg);
}

.strategy-icon-priority::after {
  left: 0.95rem;
  top: 0.9rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.strategy-icon-roadmap::before {
  left: 0.78rem;
  top: 1.55rem;
  width: 1.6rem;
  height: 0.75rem;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-radius: 0 1rem 0 0;
}

.strategy-icon-roadmap::after {
  left: 0.8rem;
  top: 0.9rem;
  width: 1.6rem;
  height: 1.55rem;
  background:
    radial-gradient(circle at 0.1rem 0.1rem, currentColor 0 0.17rem, transparent 0.18rem),
    radial-gradient(circle at 0.82rem 0.8rem, currentColor 0 0.17rem, transparent 0.18rem),
    radial-gradient(circle at 1.55rem 1.45rem, currentColor 0 0.17rem, transparent 0.18rem);
}

.strategy-icon-people::before {
  left: 0.88rem;
  top: 0.78rem;
  width: 1.45rem;
  height: 0.72rem;
  background:
    radial-gradient(circle at 0.32rem 0.36rem, currentColor 0 0.24rem, transparent 0.25rem),
    radial-gradient(circle at 1.08rem 0.36rem, currentColor 0 0.24rem, transparent 0.25rem);
}

.strategy-icon-people::after {
  left: 0.82rem;
  top: 1.62rem;
  width: 1.55rem;
  height: 0.7rem;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 1rem 1rem;
}

.strategy-icon-decision::before {
  left: 1.05rem;
  top: 0.72rem;
  width: 1.05rem;
  height: 1.55rem;
  border: 2px solid currentColor;
  border-radius: 0.18rem;
}

.strategy-icon-decision::after {
  left: 1.32rem;
  top: 1.18rem;
  width: 0.58rem;
  height: 0.34rem;
  border-width: 0 0 2px 2px;
  border-style: solid;
  transform: rotate(-45deg);
}

.interactive-card[aria-expanded="true"] .interactive-card-icon::after {
  opacity: 1;
}

.interactive-card-number {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  color: rgba(15, 35, 66, 0.08);
  font-family: "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}

.interactive-card h3 {
  margin-bottom: 0.85rem;
}

.interactive-card p {
  margin-bottom: 1.5rem;
}

.interactive-card-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  margin-top: auto;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.interactive-card-hint::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(183, 102, 69, 0.35);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.interactive-card-details {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.interactive-card-details li + li {
  margin-top: 0.65rem;
}

.interactive-card-back-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(183, 102, 69, 0.22);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 50px var(--shadow-dark);
}

.feature-copy article {
  margin-bottom: 2.5rem;
}

.feature-copy h3 {
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
  font-size: 1.25rem;
  font-weight: 700;
}

.interactive-card-section .interactive-card h3 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1.3;
}

.interactive-card-section .interactive-card p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.feature-list article p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: 32px;
  text-align: center;
  padding: 5rem 3rem;
  margin: 2rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  max-width: 60rem;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}

.service-cta-wrap {
  padding: 1rem 0 4.5rem;
}

.service-cta {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 35, 66, 0.16);
}

.feature-section + .cta-section.container,
.feature-section + .service-cta-wrap {
  margin-top: 0;
}

main > .cta-section.container:last-child {
  margin-bottom: 4.5rem;
}

.service-cta h2,
.service-cta p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta .button {
  position: relative;
  z-index: 1;
}

.service-cta::before {
  content: "";
  position: absolute;
  inset: auto -4rem -7rem auto;
  width: 21rem;
  height: 21rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.service-cta-art {
  position: absolute;
  right: 2rem;
  top: 1.4rem;
  width: min(280px, 34%);
  height: auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.contact-section {
  background: var(--bg-light);
  border-radius: 32px;
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-section a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px var(--shadow);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-card p + p {
  margin-top: 1rem;
}

.contact-card strong {
  color: var(--navy);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

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

.form-field label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-light);
  color: var(--text);
  font: inherit;
  padding: 0.95rem 1rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 9rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(183, 102, 69, 0.2);
  border-color: rgba(183, 102, 69, 0.55);
  background: var(--white);
}

.contact-form .button {
  width: fit-content;
  margin-top: 0.25rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: transparent;
}

.site-footer p {
  margin: 0.5rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .interactive-card-section .feature-copy {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

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

  .hero-grid,
  .feature-grid,
  .why-grid,
  .cta-grid {
    gap: 3rem;
  }

}

@media (max-width: 900px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .feature-grid,
  .contact-grid,
  .why-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero {
    padding: 4rem 0 0;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .service-hero {
    padding: 4rem 0;
  }

  .service-hero-visual {
    min-height: 320px;
  }

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

  .hero-image img {
    max-height: 540px;
    object-position: 50% 10%;
  }

  .handwritten-note {
    top: 2.5rem;
    right: 7%;
    width: min(12rem, 34%);
  }

  .handwritten-note::before {
    width: 4rem;
    height: 2.2rem;
  }
}

@media (max-width: 650px) {
  .cards-grid,
  .services-grid,
  .interactive-card-section .feature-copy {
    grid-template-columns: 1fr;
  }

  .interactive-card,
  .interactive-card-inner,
  .interactive-card-face {
    min-height: 340px;
  }

  .interactive-card-face {
    padding: 1.75rem;
  }

  .interactive-card-illustration {
    width: 96px;
    height: 96px;
    margin-bottom: 1rem;
  }

  .interactive-card-illustration.small {
    width: 58px;
    height: 58px;
  }

  .hero {
    padding: 3rem 0 0;
  }

  .service-hero {
    padding: 3rem 0;
  }

  .service-hero .hero-grid {
    gap: 2rem;
  }

  .service-hero-visual {
    min-height: 260px;
  }

  .service-page-section.section-soft {
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 24px;
  }

  .hero-image {
    min-height: 390px;
    justify-content: flex-start;
  }

  .hero-image img {
    width: min(420px, 82%);
    max-height: 440px;
    object-position: 50% 8%;
  }

  .handwritten-note {
    top: 1.25rem;
    right: 0;
    width: 9rem;
    font-size: 1.1rem;
  }

  .handwritten-note::before {
    right: calc(100% + 0.15rem);
    width: 3.4rem;
    height: 1.9rem;
  }

  .service-section,
  .feature-section,
  .cta-section,
  .contact-section,
  .services-section,
  .why-section {
    padding: 4rem 0;
  }

  .cta-section,
  .cta-banner {
    padding: 3rem 2rem;
  }

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

  .button {
    width: 100%;
    justify-content: center;
  }

}

.hero-subtitle {
  color: var(--muted);
  max-width: 46rem;
  margin: 1rem 0 1.5rem;
}

.note {
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 2rem;
}

.service-section h2,
.feature-section h2,
.cta-section h2,
.contact-section h2 {
  margin-top: 0;
}

.service-section {
  padding: 4rem 0;
}

.service-section p {
  max-width: 76rem;
  color: var(--muted);
}

.card .claim {
  margin: 0.5rem 0 1rem;
  color: var(--primary);
  font-weight: 600;
}

.feature-section {
  padding: 4rem 0;
}

.feature-grid {
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 420px);
  align-items: center;
}

.feature-copy article {
  margin-bottom: 1.5rem;
}

.feature-copy h3 {
  margin-bottom: 0.5rem;
}

.feature-list article p {
  margin: 0;
  color: var(--muted);
}

.cta-section {
  padding: 3rem 0;
  text-align: center;
}

.cta-section p {
  max-width: 56rem;
  margin: 1rem auto 2rem;
  color: var(--muted);
}

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  align-items: start;
}

.contact-copy p {
  max-width: 42rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav {
    align-items: stretch;
    gap: 0.65rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.45rem;
    border-radius: 14px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--bg-light);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown.open .nav-dropdown-toggle::after {
    transform: translateY(0.08rem) rotate(225deg);
  }

  .nav-dropdown-menu a {
    padding: 0.72rem 0.75rem;
  }

  .site-nav a.cta {
    width: fit-content;
    margin-top: 0.25rem;
  }
}

@media (max-width: 900px) {
  .service-hero .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
    width: min(1180px, calc(100% - 40px));
    min-height: 0;
  }

  .service-hero .hero-copy {
    width: 100%;
    max-width: none;
  }

  .service-hero-visual {
    width: 100%;
    min-height: 300px;
  }

  .service-hero-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(1180px, calc(100% - 40px));
  }

  .header-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 0;
  }

  .brand {
    max-width: calc(100% - 5.5rem);
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .menu-toggle {
    flex: 0 0 auto;
    padding: 0.65rem 0.85rem;
  }

  .site-nav {
    flex-basis: 100%;
    margin-top: 0.75rem;
  }

  .service-hero {
    padding: 3.25rem 0 3rem;
  }

  .service-hero .hero-grid {
    grid-template-columns: 1fr;
    width: min(1180px, calc(100% - 40px));
    gap: 2rem;
  }

  .service-hero .hero-copy,
  .service-hero .hero-copy p,
  .hero-subtitle {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.625rem, 11vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: normal;
  }

  .service-hero-visual {
    min-height: 260px;
  }

  .service-hero-blob {
    width: min(390px, 88vw);
  }

  .service-hero-image {
    width: min(100%, 500px);
    max-width: 500px;
  }

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

  .hero-actions .button,
  .service-cta .button {
    width: 100%;
    max-width: 320px;
  }

  .cards-grid,
  .interactive-card-section .feature-copy {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 2rem;
  }

  .interactive-card,
  .interactive-card-inner,
  .interactive-card-face {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 40px));
  }

  .header-row {
    align-items: flex-start;
  }

  .brand {
    max-width: calc(100% - 4.75rem);
    font-size: 0.98rem;
  }

  .service-hero {
    padding: 2.75rem 0 2.5rem;
  }

  .service-hero .hero-grid {
    gap: 1.75rem;
  }

  .hero h1 {
    font-size: clamp(2.625rem, 13vw, 3rem);
    line-height: 1.08;
  }

  .hero-subtitle,
  .hero-copy p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .service-hero-visual {
    min-height: 230px;
  }

  .service-hero-image {
    width: min(100%, 420px);
  }

  .service-hero-visual::before,
  .service-hero-visual::after {
    display: none;
  }

  .service-section,
  .feature-section {
    padding: 3rem 0;
  }

  .service-cta-wrap {
    padding: 0.5rem 0 3rem;
  }

  main > .cta-section.container:last-child {
    margin-bottom: 3rem;
  }

  .service-page-section.section-soft {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .interactive-card,
  .interactive-card-inner,
  .interactive-card-face {
    min-height: 410px;
  }

  .interactive-card-face {
    padding: 1.5rem;
  }

  .interactive-card-section .interactive-card h3 {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .interactive-card-section .interactive-card p,
  .interactive-card-details {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .contact-card,
  .contact-form {
    padding: 1.5rem;
  }

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