:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --ink: #142033;
  --muted: #64748b;
  --line: #d9e3ee;
  --navy: #153a66;
  --blue: #2f6fbd;
  --teal: #27b783;
  --coral: #ff7a59;
  --amber: #f7c948;
  --shadow: 0 18px 48px rgba(21, 58, 102, 0.12);
  --shadow-soft: 0 10px 28px rgba(21, 58, 102, 0.08);
  --radius: 8px;
  --wrap: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.68;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--blue);
}

button,
input,
textarea,
select,
a {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 89, 0.35);
  outline-offset: 3px;
}

.wrap {
  margin: 0 auto;
  max-width: var(--wrap);
  padding: 0 24px;
  width: 100%;
}

.screen-reader-text,
.skip-link {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link:focus {
  clip: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  height: auto;
  left: 16px;
  padding: 10px 14px;
  top: 16px;
  width: auto;
  z-index: 1000;
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 227, 238, 0.9);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
}

.header-wrap {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
}

.site-brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 210px;
}

.custom-logo-link img {
  max-height: 56px;
  width: auto;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: #fff;
  display: inline-flex;
  flex: 0 0 46px;
  font-size: 15px;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.site-title {
  color: var(--navy);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.site-tagline {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: end;
}

.primary-nav ul {
  align-items: center;
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  border-radius: var(--radius);
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 620;
  padding: 10px 12px;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  background: #edf5ff;
  color: var(--blue);
}

.header-cta,
.btn,
button,
input[type="submit"] {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
}

.header-cta,
.btn.primary,
button,
input[type="submit"] {
  background: var(--coral);
  box-shadow: 0 12px 24px rgba(255, 122, 89, 0.22);
  color: #fff;
}

.header-cta:hover,
.btn.primary:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.btn.ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
}

.btn.ghost:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-soft);
  color: var(--blue);
  transform: translateY(-1px);
}

.btn.light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.nav-toggle {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(39, 183, 131, 0.22), transparent 28%),
    linear-gradient(115deg, #102d55, #2f6fbd);
  color: #fff;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  padding: clamp(72px, 8vw, 116px) 0 56px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  bottom: 0;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
}

.hero-copy {
  animation: opFadeUp 700ms ease both;
}

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

.hero .eyebrow,
.contact-section .eyebrow {
  color: #ffd2c6;
}

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

h1 {
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 22px;
  max-width: 940px;
}

h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.06;
  margin-bottom: 16px;
}

h3 {
  color: var(--navy);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 400;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 34px;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 120px));
  margin: 0;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px;
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.hero-stats dd {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.hero-visual {
  animation: opFadeIn 800ms ease 120ms both;
  position: relative;
}

.hero-image-card {
  margin: 0;
  position: relative;
}

.hero-image-card img {
  animation: opFloat 6s ease-in-out infinite;
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(7, 20, 42, 0.34);
  width: 100%;
}

.browser-window {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transform: rotate(1.5deg);
}

.browser-bar {
  align-items: center;
  background: #edf3fa;
  display: flex;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
}

.browser-bar span {
  border-radius: 999px;
  display: block;
  height: 10px;
  width: 10px;
}

.browser-bar span:nth-child(1) { background: var(--coral); }
.browser-bar span:nth-child(2) { background: var(--amber); }
.browser-bar span:nth-child(3) { background: var(--teal); }

.mock-site {
  background: #fff;
  padding: 26px;
}

.mock-nav {
  background: linear-gradient(90deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  height: 44px;
  margin-bottom: 22px;
}

.mock-hero {
  align-items: end;
  background: linear-gradient(135deg, #eef7ff, #e7fff7);
  border-radius: var(--radius);
  color: var(--navy);
  display: flex;
  min-height: 230px;
  padding: 28px;
}

.mock-hero strong,
.mock-hero span {
  display: block;
}

.mock-hero strong {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.mock-hero span {
  color: var(--muted);
  font-weight: 700;
  margin-top: 8px;
}

.mock-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.mock-grid span {
  background: #f2f6fa;
  border-radius: var(--radius);
  height: 82px;
}

.floating-note {
  background: var(--teal);
  border-radius: var(--radius);
  bottom: 34px;
  box-shadow: var(--shadow);
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  position: absolute;
  right: -10px;
  animation: opPulse 3.4s ease-in-out infinite;
}

.content-section,
.split-section,
.contact-section {
  padding: clamp(70px, 8vw, 112px) 0;
}

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

.section-heading p,
.split-grid p,
.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.post-card,
.content-card,
.portfolio-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 28px;
}

.service-card:hover,
.portfolio-grid article:hover,
.post-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.icon-chip {
  align-items: center;
  background: #edf5ff;
  border-radius: var(--radius);
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}

.service-card:nth-child(2) .icon-chip { background: #fff4ee; color: var(--coral); }
.service-card:nth-child(3) .icon-chip { background: #e9faf4; color: var(--teal); }
.service-card:nth-child(4) .icon-chip { background: #fff8db; color: #9a6d00; }

.service-card p,
.portfolio-grid p,
.post-card p,
.content-card p {
  color: var(--muted);
}

.split-section {
  background: #ffffff;
}

.split-grid {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  background: #f8fbfe;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
  padding: 20px 20px 20px 72px;
  position: relative;
}

.process-list li::before {
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
  content: counter(process);
  counter-increment: process;
  display: flex;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  left: 20px;
  position: absolute;
  top: 20px;
  width: 38px;
}

.process-list strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 600;
}

.process-list span {
  color: var(--muted);
}

.portfolio-section {
  background: linear-gradient(180deg, var(--bg), #fff);
}

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

.portfolio-grid article {
  overflow: hidden;
}

.portfolio-grid img {
  aspect-ratio: 16 / 10;
  background: #f4f8fc;
  object-fit: cover;
  width: 100%;
}

.portfolio-grid h3,
.portfolio-grid p {
  margin-left: 22px;
  margin-right: 22px;
}

.portfolio-grid h3 {
  margin-top: 22px;
}

.portfolio-grid p {
  margin-bottom: 24px;
}

.portfolio-client-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  overflow: hidden;
}

.portfolio-client-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.portfolio-client-visual {
  align-items: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 122, 89, 0.22), transparent 34%),
    linear-gradient(135deg, #edf5ff, #e9faf4);
  display: flex;
  justify-content: center;
  min-height: 168px;
}

.portfolio-client-visual img {
  aspect-ratio: auto;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.portfolio-client-visual span {
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: #fff;
  display: inline-flex;
  font-size: 28px;
  font-weight: 700;
  height: 82px;
  justify-content: center;
  letter-spacing: 0;
  width: 82px;
}

.portfolio-client-body {
  padding: 22px;
}

.portfolio-client-body h3,
.portfolio-client-body p {
  margin-left: 0;
  margin-right: 0;
}

.portfolio-type {
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.contact-section {
  background: var(--navy);
  color: #fff;
}

.contact-panel {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.contact-panel h2 {
  color: #fff;
  max-width: 760px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 760px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
}

.contact-meta {
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.contact-meta li {
  padding-left: 18px;
  position: relative;
}

.contact-meta li::before {
  background: var(--teal);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.78em;
  width: 7px;
}

.site-footer {
  background: #0d1f38;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 54px;
  padding-top: 58px;
}

.footer-logo {
  color: #fff;
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 420px;
}

.site-footer h2 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-contact,
.footer-links,
.footer-widgets {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-links {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 14px !important;
  padding-top: 14px !important;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-wrap {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 18px;
  padding-top: 18px;
}

.page-hero {
  background: linear-gradient(115deg, var(--navy), var(--blue));
  color: #fff;
  padding: 86px 0;
}

.compact-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  max-width: 900px;
}

.compact-hero .hero-lead {
  color: rgba(255, 255, 255, 0.78);
}

.narrow {
  max-width: 860px;
}

.content-card {
  padding: clamp(24px, 4vw, 46px);
}

.editable-page-content {
  margin-top: 22px;
}

.contact-cards,
.mini-service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 22px;
}

.contact-showcase {
  align-items: center;
  background:
    radial-gradient(circle at 82% 12%, rgba(39, 183, 131, 0.18), transparent 32%),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  margin-bottom: 24px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
}

.contact-showcase-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 16px;
}

.contact-showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.contact-actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-illustration {
  margin: 0;
}

.contact-illustration img {
  animation: opFloat 6.8s ease-in-out infinite;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.contact-cards article,
.mini-service-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.contact-cards article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), #ffffff),
    radial-gradient(circle at 100% 0, rgba(255, 122, 89, 0.12), transparent 38%);
}

.contact-cards span,
.mini-service-grid span {
  color: var(--coral);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-cards a,
.contact-cards strong {
  color: var(--navy);
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-cards small {
  color: var(--muted);
  display: block;
  margin-top: 6px;
}

.mini-service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mini-service-grid h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

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

.entry-content .wp-block-image,
.entry-content figure {
  margin-left: auto;
  margin-right: auto;
}

.entry-content .wp-block-image img,
.entry-content figure img {
  border-radius: var(--radius);
  max-height: 420px;
  object-fit: contain;
  width: auto;
}

.entry-content svg {
  display: block;
  height: auto;
  margin: 0 auto;
  max-height: 320px;
  max-width: 100%;
}

.widget_archive,
.footer-widget.widget_archive {
  display: none !important;
}

.entry-content .wp-block-buttons {
  margin-top: 22px;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.4em;
}

.entry-content a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
}

.entry-content blockquote {
  border-left: 5px solid var(--coral);
  color: var(--muted);
  margin-left: 0;
  padding-left: 20px;
}

.entry-content input,
.entry-content textarea,
.entry-content select,
.search-field {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  width: 100%;
}

.featured-image {
  margin: 0 0 26px;
}

.featured-image img {
  border-radius: var(--radius);
}

.posts-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.post-card {
  overflow: hidden;
}

.post-card-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.post-card-body {
  padding: 22px;
}

.post-date {
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.post-card h2 {
  font-size: 23px;
}

.text-link {
  color: var(--blue);
  font-weight: 700;
}

.pagination {
  grid-column: 1 / -1;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a,
.pagination span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  display: inline-flex;
  font-weight: 700;
  min-width: 42px;
  padding: 9px 12px;
}

.pagination .current,
.pagination a:hover {
  background: var(--navy);
  color: #fff;
}

@media (max-width: 1020px) {
  .header-wrap {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    align-items: center;
    background: var(--navy);
    border-radius: var(--radius);
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    height: 44px;
    justify-content: center;
    justify-self: end;
    padding: 0;
    width: 48px;
  }

  .nav-toggle span:not(.screen-reader-text) {
    background: #fff;
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 20px;
  }

  .primary-nav {
    background: #fff;
    border-top: 1px solid var(--line);
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    margin: 0 -24px;
    padding: 10px 24px 18px;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    align-items: stretch;
    display: grid;
  }

  .primary-nav a {
    padding: 13px 0;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .contact-panel,
  .contact-showcase {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: start;
  }

  .service-grid,
  .portfolio-grid,
  .posts-grid,
  .footer-grid,
  .mini-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-wrap {
    min-height: 70px;
  }

  .site-tagline {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 48px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-stats,
  .service-grid,
  .portfolio-grid,
  .posts-grid,
  .footer-grid,
  .contact-cards,
  .mini-service-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 8px;
  }

  .floating-note {
    bottom: -8px;
    left: 18px;
    right: auto;
  }

  .contact-showcase {
    padding: 22px;
  }

  .footer-bottom-wrap {
    align-items: start;
    flex-direction: column;
  }
}

@keyframes opFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes opFadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

@media (max-width: 460px) {
  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .brand-copy {
    max-width: 190px;
  }

  .site-title {
    font-size: 19px;
  }
}
