:root {
  --bg: #f5ede1;
  --bg-strong: #e9ddca;
  --surface: rgba(255, 250, 242, 0.78);
  --surface-strong: #fff9f2;
  --ink: #171717;
  --ink-soft: #4d443a;
  --line: rgba(23, 23, 23, 0.12);
  --line-strong: rgba(23, 23, 23, 0.2);
  --accent: #d4623a;
  --accent-deep: #a94622;
  --accent-soft: #f0ba8c;
  --green: #285540;
  --shadow: 0 24px 80px rgba(77, 55, 33, 0.14);
  --shadow-soft: 0 12px 32px rgba(77, 55, 33, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
  --space-section: 112px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 98, 58, 0.15), transparent 32%),
    radial-gradient(circle at top right, rgba(40, 85, 64, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f2e8 0%, #f5ede1 42%, #efe3d1 100%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
}

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

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

p {
  margin: 0;
  line-height: 1.72;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--ink-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 0.98;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

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

.section {
  padding: var(--space-section) 0;
  position: relative;
  overflow: clip;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.section-art {
  position: absolute;
  inset: 0 0 auto;
  height: clamp(180px, 22vw, 290px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.section-art svg {
  width: 100%;
  height: 100%;
}

.art-path,
.art-grid rect,
.art-orb,
.art-node {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.art-path {
  stroke-width: 2.2;
  stroke-dasharray: 10 14;
  animation: driftLine 18s linear infinite;
}

.art-path-primary {
  stroke: rgba(212, 98, 58, 0.48);
}

.art-path-secondary {
  stroke: rgba(40, 85, 64, 0.28);
  animation-duration: 24s;
  animation-direction: reverse;
}

.art-grid rect {
  stroke: rgba(23, 23, 23, 0.08);
  stroke-width: 1.5;
  fill: rgba(255, 249, 242, 0.18);
  animation: floatTile 9s ease-in-out infinite;
}

.art-grid rect:nth-child(2) {
  animation-delay: -2s;
}

.art-grid rect:nth-child(3) {
  animation-delay: -4s;
}

.art-orb {
  fill: rgba(212, 98, 58, 0.16);
  stroke: rgba(212, 98, 58, 0.3);
  stroke-width: 1.5;
  transform-origin: center;
  animation: pulseOrb 8s ease-in-out infinite;
}

.art-orb-large {
  fill: rgba(40, 85, 64, 0.12);
  stroke: rgba(40, 85, 64, 0.22);
}

.art-node {
  fill: rgba(23, 23, 23, 0.9);
  stroke: rgba(255, 249, 242, 0.84);
  stroke-width: 3;
  animation: pulseNode 5s ease-in-out infinite;
}

@keyframes driftLine {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -240;
  }
}

@keyframes floatTile {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseOrb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes pulseNode {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

@keyframes capabilityGlow {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.04) translate3d(-8px, 8px, 0);
    opacity: 1;
  }
}

@keyframes capabilityScan {
  0% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  55% {
    transform: translateX(260%) rotate(18deg);
    opacity: 0.9;
  }
  100% {
    transform: translateX(260%) rotate(18deg);
    opacity: 0;
  }
}

@keyframes capabilityPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(240, 186, 140, 0.4);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 10px rgba(240, 186, 140, 0);
  }
}

@keyframes orbitDriftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-12px, 12px, 0) scale(1.04);
  }
}

@keyframes orbitDriftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-8px, -10px, 0);
  }
}

@keyframes orbitDriftThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -6px, 0) scale(0.97);
  }
}

.eyebrow {
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-deep);
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
  max-width: 820px;
}

.section-head h2 {
  font-size: clamp(36px, 4.8vw, 72px);
  max-width: 14ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 237, 225, 0.7);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px) saturate(130%);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-stuck {
  background: rgba(245, 237, 225, 0.88);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(77, 55, 33, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  transition: padding 0.25s ease;
}

.site-header.is-compact .header-inner {
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--green) 100%);
  color: #fff6ea;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  line-height: 1;
}

.nav {
  position: relative;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.8);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 10px 16px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.7);
}

.nav-list a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-list a:hover {
  background: rgba(23, 23, 23, 0.06);
  color: var(--ink);
}

.hero {
  padding-top: 38px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  position: relative;
}

.hero-copy {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.92), rgba(240, 225, 204, 0.7)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -40px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 98, 58, 0.18), transparent 70%);
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(44px, 5.9vw, 82px);
  line-height: 0.94;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 48ch;
  font-size: clamp(15px, 1.15vw, 18px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: #fff6ea;
  border-color: var(--ink);
}

.btn-primary:hover {
  background: #262626;
}

.btn-secondary {
  background: rgba(255, 249, 242, 0.72);
  color: var(--ink);
}

.btn-secondary:hover {
  background: rgba(23, 23, 23, 0.06);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-metrics article {
  display: grid;
  gap: 8px;
}

.hero-metrics strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
}

.hero-metrics span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.hero-panel {
  display: grid;
  gap: 20px;
}

.hero-card,
.info-card,
.service-card,
.work-card,
.process-card,
.contact-form,
.contact-panel,
.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.75);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.hero-card-primary {
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.95), rgba(40, 85, 64, 0.96)),
    var(--ink);
  color: #fff6ea;
}

.hero-card-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(240, 186, 140, 0.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255, 246, 234, 0.08), transparent 18%),
    linear-gradient(120deg, transparent 0%, rgba(255, 246, 234, 0.04) 45%, transparent 80%);
  animation: capabilityGlow 12s ease-in-out infinite;
}

.hero-card-primary::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 246, 234, 0.08);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.hero-card-primary p,
.hero-card-primary li {
  color: rgba(255, 246, 234, 0.8);
}

.hero-card-primary > * {
  position: relative;
  z-index: 2;
}

.capability-orbits {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 246, 234, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -64px;
  animation: orbitDriftOne 14s ease-in-out infinite;
}

.orbit-two {
  width: 120px;
  height: 120px;
  bottom: 42px;
  right: 18px;
  border-color: rgba(240, 186, 140, 0.2);
  animation: orbitDriftTwo 10s ease-in-out infinite;
}

.orbit-three {
  width: 168px;
  height: 168px;
  bottom: -58px;
  left: -24px;
  border-color: rgba(255, 246, 234, 0.08);
  animation: orbitDriftThree 16s ease-in-out infinite;
}

.capability-scan {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -38%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 246, 234, 0.08), transparent);
  transform: rotate(18deg);
  filter: blur(6px);
  animation: capabilityScan 7.5s ease-in-out infinite;
}

.hero-card-secondary {
  background:
    radial-gradient(circle at top right, rgba(212, 98, 58, 0.24), transparent 35%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.9), rgba(240, 225, 204, 0.75));
}

.card-kicker {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stack-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.stack-list li {
  position: relative;
  padding: 0 0 14px 24px;
  border-bottom: 1px solid rgba(255, 246, 234, 0.14);
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.14;
  transform: translateX(0);
  transition: transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.stack-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(240, 186, 140, 0.9);
  box-shadow: 0 0 0 0 rgba(240, 186, 140, 0.45);
  animation: capabilityPulse 3.6s ease-in-out infinite;
}

.stack-list li:nth-child(2)::before {
  animation-delay: 0.35s;
}

.stack-list li:nth-child(3)::before {
  animation-delay: 0.7s;
}

.stack-list li:nth-child(4)::before {
  animation-delay: 1.05s;
}

.stack-list li:nth-child(5)::before {
  animation-delay: 1.4s;
}

.hero-card-primary:hover .stack-list li {
  transform: translateX(6px);
}

.hero-card-primary:hover .stack-list li:nth-child(2) {
  transition-delay: 0.04s;
}

.hero-card-primary:hover .stack-list li:nth-child(3) {
  transition-delay: 0.08s;
}

.hero-card-primary:hover .stack-list li:nth-child(4) {
  transition-delay: 0.12s;
}

.hero-card-primary:hover .stack-list li:nth-child(5) {
  transition-delay: 0.16s;
}

.impact-line {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.58;
  color: var(--ink);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.signal-item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 249, 242, 0.64);
  box-shadow: var(--shadow-soft);
  font-size: 15px;
  line-height: 1.45;
}

.signal-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-deep);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.about-story {
  padding: 28px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 249, 242, 0.48);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.about-story p + p {
  margin-top: 18px;
}

.about-story p {
  font-size: clamp(16px, 1.18vw, 19px);
}

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

.info-card {
  padding: 24px;
}

.info-card h3 {
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.04;
  margin-bottom: 12px;
}

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

.service-card {
  min-height: 240px;
  padding: 24px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.service-card-feature {
  background:
    radial-gradient(circle at top left, rgba(212, 98, 58, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.95), rgba(240, 225, 204, 0.72));
}

.service-index,
.process-number {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.06);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.service-card h3,
.work-card h3,
.process-card h3,
.contact-panel h3 {
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.06;
}

.portfolio-shell {
  display: grid;
  gap: 32px;
}

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

.work-card {
  grid-column: span 4;
  min-height: 260px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.94), rgba(240, 225, 204, 0.66));
}

.work-card-large {
  grid-column: span 8;
  min-height: 320px;
}

.work-card:nth-child(2n) {
  background:
    radial-gradient(circle at top right, rgba(40, 85, 64, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.94), rgba(240, 225, 204, 0.66));
}

.work-card:nth-child(3n) {
  background:
    radial-gradient(circle at top right, rgba(212, 98, 58, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.94), rgba(240, 225, 204, 0.66));
}

.work-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.process-layout {
  display: grid;
  gap: 26px;
}

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

.process-card {
  min-height: 220px;
  padding: 22px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.reviews-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.reviews-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.review-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: var(--shadow-soft);
}

.review-card {
  min-height: 250px;
  padding: 24px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.review-card-feature {
  background:
    radial-gradient(circle at top right, rgba(40, 85, 64, 0.15), transparent 35%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.96), rgba(240, 225, 204, 0.72));
}

.review-rating {
  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
  color: var(--ink);
}

.review-rating span {
  display: block;
  margin-top: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.review-text {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink);
}

.review-link {
  font-weight: 700;
  color: var(--accent-deep);
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.review-actions p {
  max-width: 60ch;
}

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

.faq-card {
  min-height: 190px;
  padding: 22px;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 98, 58, 0.28);
}

.faq-card h3 {
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.12;
}

.faq-card a {
  color: var(--accent-deep);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 16px;
}

.contact-panel {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(212, 98, 58, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.94), rgba(240, 225, 204, 0.76));
}

.contact-points {
  display: grid;
  gap: 12px;
  padding: 8px 0;
}

.contact-points p,
.contact-points a {
  font-size: 15px;
}

.contact-point-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 249, 242, 0.64);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.contact-point-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 98, 58, 0.28);
  background: rgba(255, 249, 242, 0.8);
}

.contact-point-card span:last-child {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.contact-point-label {
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
}

.contact-form {
  padding: 24px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.form-row.checkbox {
  margin-top: 4px;
}

.form-row label {
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 13px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(212, 98, 58, 0.7);
  box-shadow: 0 0 0 4px rgba(212, 98, 58, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .hp {
  display: none !important;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.form-status {
  color: var(--ink-soft);
  font-size: 14px;
}

.map-wrap {
  margin-top: 24px;
}

.map-embed {
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

.footer {
  padding: 22px 0 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

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

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.footer-links a,
.footer-contact {
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-contact {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.to-top,
.fab {
  position: fixed;
  z-index: 210;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.to-top {
  right: 18px;
  bottom: 78px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
}

.fab:hover,
.to-top:hover {
  transform: translateY(-2px);
}

.whatsapp-fab {
  right: 18px;
  bottom: 18px;
  background: radial-gradient(circle at 30% 30%, #25d366, #128c7e);
}

.whatsapp-fab svg {
  width: 22px;
  height: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --space-section: 92px;
  }

  .hero-shell,
  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .reviews-grid,
  .faq-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .work-card,
  .work-card-large {
    grid-column: auto;
    min-height: 250px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 84px;
  }

  .header-inner {
    position: relative;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    padding: 14px 0;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav {
    flex-shrink: 0;
    margin-left: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 88px;
  }

  .nav-list {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(100vw - 32px, 150px);
    padding: 8px;
    border-radius: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 249, 242, 0.96);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(16px);
  }

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

  .nav-list li {
    display: block;
    width: 100%;
  }

  .nav-list a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 16px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
  }

  .nav-list a:hover {
    background: rgba(23, 23, 23, 0.06);
    color: var(--ink);
  }

  .signal-strip,
  .about-grid,
  .services-grid,
  .reviews-grid,
  .faq-grid,
  .portfolio-grid,
  .process-steps,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section-art {
    height: 170px;
    opacity: 0.65;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-contact {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 16px;
  }

  .hero-shell,
  .portfolio-shell,
  .process-layout {
    gap: 22px;
  }

  .hero-panel,
  .contact-sidebar {
    gap: 14px;
  }

  .contact-grid,
  .about-layout {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  :root {
    --space-section: 74px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-copy h1,
  .section-head h2 {
    letter-spacing: -0.05em;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 10.5vw, 56px);
  }

  .section-head h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .hero-copy {
    padding: 24px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .hero-text,
  .impact-line {
    font-size: 16px;
  }

  p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
  }

  .review-actions {
    align-items: flex-start;
  }

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

  .map-embed iframe {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 8px;
    max-width: calc(100% - 90px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 13px;
  }

  .brand-text {
    font-size: 15px;
    letter-spacing: -0.02em;
  }

  .nav-toggle {
    min-width: 74px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .hero-copy,
  .hero-card,
  .service-card,
  .review-card,
  .faq-card,
  .contact-form,
  .contact-panel,
  .process-card {
    padding: 20px;
  }

  .contact-point-card {
    padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 12px;
  }

  .whatsapp-fab {
    right: 18px;
    bottom: 76px;
  }

  .to-top {
    right: 18px;
    bottom: 136px;
  }

  .header-inner {
    padding: 12px 0;
  }

  .brand-text {
    font-size: 14px;
    letter-spacing: -0.01em;
  }

}

/* ── Portfolio marquee ──────────────────────────────────────── */
@keyframes portfolioScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.portfolio-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0px, #000 48px, #000 calc(100% - 48px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0px, #000 48px, #000 calc(100% - 48px), transparent 100%);
}

.portfolio-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: portfolioScroll 55s linear infinite;
  will-change: transform;
  padding: 8px 0 16px;
}

.portfolio-track.is-paused {
  animation-play-state: paused;
}

a.work-tile {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.22s ease,
              border-color 0.22s ease;
}

a.work-tile:hover,
a.work-tile:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(77, 55, 33, 0.18);
  border-color: var(--accent);
  outline: none;
}

.work-tile {
  flex: 0 0 240px;
  height: 220px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,249,242,0.94), rgba(240,225,204,0.66));
  box-shadow: var(--shadow-soft);
  user-select: none;
}

.work-tile-url {
  display: block;
  margin-top: auto;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-tile:nth-child(2n) {
  background: radial-gradient(circle at top right, rgba(40,85,64,0.14), transparent 34%),
              linear-gradient(180deg, rgba(255,249,242,0.94), rgba(240,225,204,0.66));
}

.work-tile:nth-child(3n) {
  background: radial-gradient(circle at top right, rgba(212,98,58,0.16), transparent 34%),
              linear-gradient(180deg, rgba(255,249,242,0.94), rgba(240,225,204,0.66));
}

.work-tile h3 {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.15;
  margin: 0;
}

.work-tile p {
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* ── Mobile CTA bar ─────────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 56px;
  background: rgba(245, 237, 225, 0.97);
  border-top: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-cta-call,
.mobile-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 50%;
  height: 100%;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: background-color 0.18s ease;
  text-decoration: none;
}

.mobile-cta-call {
  color: #fff;
  background: var(--ink);
}

.mobile-cta-call:active { background: #262626; }

.mobile-cta-whatsapp {
  color: #fff;
  background: #128c7e;
}

.mobile-cta-whatsapp:active { background: #0f7068; }

@media (max-width: 640px) {
  .mobile-cta-bar { display: flex; }

  body { padding-bottom: 56px; }

  .whatsapp-fab { bottom: 74px; }

  .to-top { bottom: 134px; }

  .signal-item[href^="tel"] {
    border-color: rgba(212, 98, 58, 0.35);
    background: rgba(212, 98, 58, 0.06);
    min-height: 52px;
  }

  .signal-item[href^="tel"] span:last-child {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
  }
}

/* ── Premium animations & interactions ─────────────────────── */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-soft));
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(212, 98, 58, 0.5);
  pointer-events: none;
  transition: width 0.08s linear;
}

/* Reveal — upgrade easing */
.reveal {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-duration: 0.75s;
}

/* Stagger — services */
.services-grid .service-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card.reveal:nth-child(2) { transition-delay: 0.13s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: 0.21s; }
.services-grid .service-card.reveal:nth-child(4) { transition-delay: 0.29s; }
.services-grid .service-card.reveal:nth-child(5) { transition-delay: 0.37s; }
.services-grid .service-card.reveal:nth-child(6) { transition-delay: 0.45s; }

/* Stagger — process */
.process-steps .process-card.reveal:nth-child(1) { transition-delay: 0.04s; }
.process-steps .process-card.reveal:nth-child(2) { transition-delay: 0.14s; }
.process-steps .process-card.reveal:nth-child(3) { transition-delay: 0.24s; }
.process-steps .process-card.reveal:nth-child(4) { transition-delay: 0.34s; }

/* Stagger — faq */
.faq-grid .faq-card.reveal:nth-child(2) { transition-delay: 0.07s; }
.faq-grid .faq-card.reveal:nth-child(3) { transition-delay: 0.14s; }
.faq-grid .faq-card.reveal:nth-child(4) { transition-delay: 0.21s; }
.faq-grid .faq-card.reveal:nth-child(5) { transition-delay: 0.28s; }
.faq-grid .faq-card.reveal:nth-child(6) { transition-delay: 0.35s; }

/* Stagger — reviews */
.reviews-grid .review-card.reveal:nth-child(2) { transition-delay: 0.10s; }
.reviews-grid .review-card.reveal:nth-child(3) { transition-delay: 0.20s; }

/* Service card hover — JS handles 3D tilt, CSS handles glow/color */
.service-card {
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  position: relative;
}

.service-card:hover {
  box-shadow: 0 28px 72px rgba(77, 55, 33, 0.18), 0 0 0 1px rgba(212, 98, 58, 0.12);
  border-color: rgba(212, 98, 58, 0.22);
}

.service-card:hover .service-index {
  background: var(--accent);
  color: #fff6ea;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Process card hover */
.process-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  overflow: hidden;
  position: relative;
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(77, 55, 33, 0.16);
}

.process-card:hover .process-number {
  background: var(--accent);
  color: #fff6ea;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Info card hover */
.info-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  overflow: hidden;
  position: relative;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(77, 55, 33, 0.15);
}

/* Review card hover */
.review-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(77, 55, 33, 0.14);
  border-color: rgba(212, 98, 58, 0.22);
}

/* FAQ card — position for shine */
.faq-card {
  position: relative;
  overflow: hidden;
}

/* Active nav link */
.nav-list a.is-active {
  background: rgba(23, 23, 23, 0.08);
  color: var(--ink);
}

/* Button enhancements */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.2s ease,
              border-color 0.2s ease,
              box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(77, 55, 33, 0.14);
}

.btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(23, 23, 23, 0.28);
}

/* Ripple */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleAnim 0.55s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Hero headline word-by-word reveal */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.hero-word.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor glow (desktop only) */
.cursor-glow {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 98, 58, 0.28), transparent 72%);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  transition: width 0.4s ease, height 0.4s ease;
  will-change: left, top;
}

.cursor-glow.cursor-hover {
  width: 64px;
  height: 64px;
}

/* Card shine overlay */
.card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}

/* Signal strip hover */
.signal-item {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.signal-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 98, 58, 0.3);
  box-shadow: 0 14px 36px rgba(77, 55, 33, 0.12);
}

/* About story hover */
.about-story {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.about-story:hover {
  border-left-color: var(--accent-deep);
  box-shadow: 0 20px 50px rgba(77, 55, 33, 0.1);
  background-color: rgba(255, 249, 242, 0.68);
}

/* Work tile hover handled on a.work-tile above */

/* Hero secondary card hover */
.hero-card-secondary {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.hero-card-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(77, 55, 33, 0.13);
}

/* WhatsApp FAB pulse ring */
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.45), 0 12px 32px rgba(77, 55, 33, 0.1); }
  60%       { box-shadow: 0 0 0 16px rgba(18, 140, 126, 0), 0 12px 32px rgba(77, 55, 33, 0.1); }
}

.whatsapp-fab {
  animation: fabPulse 3.4s ease-out infinite;
}

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

  .portfolio-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }

  .work-tile[aria-hidden="true"] { display: none; }
}

/* ── Nav phone ──────────────────────────────────────────── */
.nav-phone {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(212, 98, 58, 0.32);
  background: rgba(212, 98, 58, 0.07);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  position: relative;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-phone:hover {
  background: rgba(212, 98, 58, 0.13);
  border-color: rgba(212, 98, 58, 0.52);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 98, 58, 0.16);
}

/* Expanding ring pulse around the button */
.nav-phone-ring {
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 2px solid rgba(212, 98, 58, 0.4);
  pointer-events: none;
  animation: navRingPulse 2.8s ease-out infinite;
}

@keyframes navRingPulse {
  0%   { transform: scale(1);    opacity: 0.85; }
  65%  { transform: scale(1.22); opacity: 0;    }
  100% { transform: scale(1.22); opacity: 0;    }
}

/* Phone icon shake — mimics an incoming call ring */
.nav-phone-icon {
  width: 15px;
  height: 15px;
  color: var(--accent-deep);
  flex-shrink: 0;
  animation: navPhoneShake 4.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes navPhoneShake {
  0%, 42%, 100% { transform: rotate(0deg); }
  44%  { transform: rotate(-18deg); }
  47%  { transform: rotate(18deg); }
  50%  { transform: rotate(-13deg); }
  53%  { transform: rotate(13deg); }
  56%  { transform: rotate(-7deg); }
  59%  { transform: rotate(7deg); }
  62%  { transform: rotate(0deg); }
}

/* Single-row compact phone in mobile navbar */
@media (max-width: 820px) {
  .nav-phone {
    display: inline-flex;
    font-size: 11px;
    padding: 6px 10px 6px 8px;
    gap: 5px;
  }

  .nav-phone-icon {
    width: 12px;
    height: 12px;
  }
}

/* Very small phones ≤380px: icon only */
@media (max-width: 380px) {
  .nav-phone-num { display: none; }
  .nav-phone { padding: 7px 9px; gap: 0; }
}

/* ── Tablet mid-range grid (641px–820px) ────────────────── */
@media (min-width: 641px) and (max-width: 820px) {
  .about-grid,
  .process-steps,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics,
  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Mobile viewport & responsiveness ───────────────────── */
body {
  overflow-x: hidden;
}

/* Shrink hero capabilities card on small phones */
@media (max-width: 480px) {
  .hero-card-primary {
    min-height: 260px;
  }
}

/* Ensure full-width signal strip items have decent tap area on mobile */
@media (max-width: 640px) {
  .signal-item {
    min-height: 56px;
  }

  /* Extra footer clearance above mobile CTA bar */
  .footer {
    padding-bottom: 88px;
  }
}

/* Prevent map iframe from blowing out on narrow phones */
@media (max-width: 480px) {
  .map-embed iframe {
    min-height: 240px;
  }
}

/* ── Footer social bar ─────────────────────────────────── */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 0 4px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-social-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 6px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  color: var(--accent);
  background: rgba(212, 98, 58, 0.08);
  border-color: rgba(212, 98, 58, 0.25);
}

/* ── Footer legal bar ──────────────────────────────────── */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.footer-legal-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  color: var(--accent-deep);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(169, 70, 34, 0.35);
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.footer-legal-link:hover {
  color: var(--accent);
  text-decoration-color: rgba(212, 98, 58, 0.7);
}

/* ── Privacy Policy Modal ───────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(23, 23, 23, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  width: min(100%, 680px);
  max-height: min(88vh, 720px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: 0 32px 96px rgba(23, 23, 23, 0.28);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.modal-overlay.is-open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255,249,242,0.95), rgba(240,225,204,0.7));
}

.modal-title {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(23, 23, 23, 0.06);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.modal-close:hover {
  background: rgba(23, 23, 23, 0.12);
  transform: scale(1.08);
}

.modal-bd {
  padding: 26px;
  overflow-y: auto;
  overscroll-behavior: contain;
  flex: 1 1 auto;
  line-height: 1.72;
}

.modal-updated {
  font-size: 13px !important;
  color: var(--ink-soft);
  margin-bottom: 22px !important;
}

.modal-bd h3 {
  font-size: clamp(16px, 1.4vw, 19px);
  letter-spacing: -0.03em;
  margin: 22px 0 10px;
  color: var(--ink);
}

.modal-bd h3:first-of-type {
  margin-top: 4px;
}

.modal-bd p {
  font-size: 15px;
  margin-bottom: 12px;
}

.modal-bd ul {
  margin: 8px 0 14px 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.modal-bd ul li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.modal-bd a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modal-ft {
  padding: 16px 26px 20px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  background: rgba(255, 249, 242, 0.7);
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .modal-overlay { padding: 12px; align-items: flex-end; }
  .modal-box { max-height: 85svh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .modal-hd, .modal-bd, .modal-ft { padding-left: 18px; padding-right: 18px; }
  .modal-ft .btn { width: 100%; }
}

/* ── reCAPTCHA widget ───────────────────────────────────── */
.recaptcha-row {
  margin-bottom: 6px;
}

.recaptcha-note {
  margin-top: 8px;
  font-size: 12px !important;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Scale widget down on very narrow phones (reCAPTCHA is 304px wide) */
@media (max-width: 340px) {
  .g-recaptcha {
    transform: scale(0.88);
    transform-origin: left top;
  }
}

/* ── Booking CTAs ──────────────────────────────────────────── */

/* Desktop nav: "Book a Call" orange pill */
@media (min-width: 821px) {
  .nav-list .nav-book {
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: background-color 0.18s ease, transform 0.18s ease;
  }
  .nav-list .nav-book:hover {
    background: var(--accent-deep);
    color: #fff;
    transform: translateY(-1px);
  }
}

/* Mobile dropdown: "Book a Call" full-width accent row */
@media (max-width: 820px) {
  .nav-list .nav-book {
    color: var(--accent);
    font-weight: 700;
    background: rgba(212, 98, 58, 0.07);
    border: 1px solid rgba(212, 98, 58, 0.2);
  }
  .nav-list .nav-book:hover {
    background: rgba(212, 98, 58, 0.14);
    color: var(--accent);
  }
}

/* "Book a free call" hero button */
.btn-book {
  background: rgba(212, 98, 58, 0.1);
  color: var(--accent-deep);
  border-color: rgba(212, 98, 58, 0.3);
  font-size: 14px;
}

.btn-book:hover {
  background: rgba(212, 98, 58, 0.18);
  border-color: var(--accent);
  color: var(--accent-deep);
}

/* "Book" signal strip tile */
.signal-book {
  background: rgba(212, 98, 58, 0.07);
  border-color: rgba(212, 98, 58, 0.2);
}

.signal-book:hover {
  border-color: var(--accent);
  background: rgba(212, 98, 58, 0.12);
}

.signal-book .signal-label {
  color: var(--accent);
}

/* Mobile: signal strip goes 2-column so 4 tiles sit in a 2×2 grid */
@media (max-width: 640px) {
  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
