:root {
  --navy-950: #07182a;
  --navy-900: #0b2137;
  --navy-850: #102a43;
  --navy-800: #153a57;
  --teal-700: #008e97;
  --teal-600: #00a9af;
  --teal-500: #12bdc2;
  --teal-200: #a3e7e3;
  --sand-50: #fbf8f0;
  --sand-100: #f6f0e2;
  --sand-200: #eaddc3;
  --gold-300: #e9c98b;
  --gold-400: #dcaf63;
  --ink: #163047;
  --muted: #617386;
  --line: rgba(22, 48, 71, 0.13);
  --white: #fff;
  --shadow: 0 24px 70px rgba(4, 26, 42, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 106px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

.site-shell {
  overflow: hidden;
}

.section-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1240px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: var(--white);
  transform: translateX(-50%);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 24, 42, 0.88);
  box-shadow: 0 14px 32px rgba(4, 20, 33, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(233, 201, 139, 0.68);
  border-radius: 50%;
  background: rgba(9, 38, 58, 0.7);
}

.brand-mark svg {
  width: 32px;
  fill: none;
  stroke: var(--gold-300);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6px;
}

.brand-name {
  color: var(--teal-500);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.brand-name strong {
  color: var(--gold-300);
  font-weight: 750;
}

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

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.site-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(233, 201, 139, 0.62);
  border-radius: 999px;
  color: var(--gold-300);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: var(--gold-300);
  background: rgba(233, 201, 139, 0.1);
  color: var(--gold-300);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 31%, rgba(12, 135, 149, 0.18), transparent 25%),
    linear-gradient(132deg, var(--navy-950) 0%, var(--navy-900) 48%, #123a56 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  top: -210px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(18, 189, 194, 0.12);
}

.hero-glow-two {
  right: 65px;
  bottom: 145px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(233, 201, 139, 0.16);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 775px;
  align-items: center;
  gap: 54px;
  grid-template-columns: 1.08fr 0.92fr;
  padding-top: 100px;
  padding-bottom: 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 19px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--teal-500);
}

.eyebrow::before,
.section-kicker::before {
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-right: 11px;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

.hero h1,
.section-title {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 400;
  letter-spacing: -0.068em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 700px;
  color: var(--white);
}

.hero h1 span,
.section-title span {
  display: block;
  color: var(--gold-300);
  font-style: italic;
}

.hero-intro {
  max-width: 625px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--teal-500);
  color: var(--navy-950);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #32ccd0;
}

.button-light {
  border-color: rgba(233, 201, 139, 0.72);
  color: var(--gold-300);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--gold-300);
  background: rgba(233, 201, 139, 0.08);
}

.text-link {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  background: var(--teal-500);
  content: "";
  transform: scaleX(0.34);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.text-link-dark {
  color: var(--navy-900);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note-dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(18, 189, 194, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18, 189, 194, 0.09);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(100%, 455px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(8, 31, 48, 0.55);
  box-shadow: 0 28px 80px rgba(1, 11, 22, 0.33);
  backdrop-filter: blur(14px);
}

.hero-card-topline,
.hero-card-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-card-topline {
  padding: 4px 5px 13px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card-status {
  color: var(--teal-500);
}

.hero-card img {
  display: block;
  width: 100%;
  max-height: 545px;
  border-radius: 17px;
  object-fit: cover;
  object-position: center center;
}

.hero-card-caption {
  padding: 14px 5px 3px;
}

.hero-card-caption p {
  max-width: 245px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.5;
}

.caption-number {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(18, 189, 194, 0.18);
  border-radius: 50%;
}

.orbit-one {
  top: -22px;
  right: -14px;
  width: 390px;
  height: 390px;
}

.orbit-two {
  right: -64px;
  bottom: -44px;
  width: 230px;
  height: 230px;
  border-color: rgba(233, 201, 139, 0.16);
}

.hero-wave {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 190px;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

.hero-wave path:first-child {
  fill: rgba(0, 142, 151, 0.24);
}

.hero-wave path:last-child {
  fill: var(--sand-50);
}

.intro {
  padding-top: 112px;
  padding-bottom: 118px;
}

.intro-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: 1.2fr 0.8fr;
}

.section-title {
  font-size: clamp(45px, 5vw, 68px);
}

.intro-copy {
  max-width: 485px;
  padding-top: 10px;
}

.intro-copy p,
.about-copy > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.services {
  padding-bottom: 132px;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 50px;
  grid-template-columns: 1.05fr 0.95fr;
  margin-bottom: 42px;
}

.section-summary {
  max-width: 470px;
  margin: 0 0 2px auto;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 146px;
  height: 146px;
  border: 1px solid rgba(0, 142, 151, 0.12);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  border-color: rgba(0, 142, 151, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card-featured {
  border-color: rgba(0, 142, 151, 0.3);
  background: var(--navy-900);
  color: var(--white);
}

.service-card-featured::after {
  border-color: rgba(18, 189, 194, 0.25);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(0, 142, 151, 0.24);
  border-radius: 50%;
}

.service-icon svg {
  width: 28px;
  fill: none;
  stroke: var(--teal-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4px;
}

.service-card-featured .service-icon {
  border-color: rgba(18, 189, 194, 0.42);
}

.service-card-featured .service-icon svg {
  stroke: var(--teal-500);
}

.service-number {
  position: absolute;
  top: 34px;
  right: 28px;
  color: rgba(22, 48, 71, 0.23);
  font-family: var(--serif);
  font-size: 28px;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.19);
}

.service-card h3 {
  margin: 32px 0 12px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.service-card-featured h3 {
  color: var(--white);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.66);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.service-tags span {
  padding: 5px 9px;
  border: 1px solid rgba(0, 142, 151, 0.21);
  border-radius: 999px;
  color: var(--teal-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-featured .service-tags span {
  border-color: rgba(18, 189, 194, 0.26);
  color: var(--teal-500);
}

.approach {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 105%, rgba(18, 189, 194, 0.2), transparent 32%),
    linear-gradient(130deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}

.approach::after {
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(233, 201, 139, 0.09);
  border-radius: 50%;
  content: "";
}

.approach-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.94fr 1.06fr;
  padding-top: 122px;
  padding-bottom: 126px;
}

.section-kicker-light {
  color: var(--teal-500);
}

.section-title-light {
  color: var(--white);
}

.approach-copy p,
.contact-copy p {
  max-width: 515px;
  margin: 25px 0 31px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.8;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-item {
  display: grid;
  gap: 21px;
  grid-template-columns: 53px 1fr;
  padding: 22px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-index {
  color: var(--teal-500);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
}

.process-item h3 {
  margin: 0 0 7px;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.process-item p {
  max-width: 475px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.about {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.96fr 1.04fr;
  padding-top: 138px;
  padding-bottom: 138px;
}

.pricing {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
  padding-top: 132px;
  padding-bottom: 132px;
}

.pricing-heading p {
  max-width: 475px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.pricing-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.pricing-card-top,
.pricing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pricing-card-top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.pricing-label {
  margin: 0 0 6px;
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-description {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.pricing-price {
  flex: 0 0 auto;
  text-align: right;
}

.pricing-price span {
  display: block;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 55px;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.pricing-price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-list {
  display: grid;
  gap: 0;
  margin: 17px 0 21px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  display: flex;
  gap: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
}

.pricing-list span {
  color: var(--teal-700);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
}

.pricing-footer span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.about-art {
  position: relative;
  min-height: 435px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 58% 35%, rgba(18, 189, 194, 0.32), transparent 28%),
    var(--navy-900);
}

.about-art-circle {
  position: absolute;
  top: -32px;
  left: 80px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(233, 201, 139, 0.2);
  border-radius: 50%;
}

.about-art-circle::before,
.about-art-circle::after {
  position: absolute;
  border: 1px solid rgba(18, 189, 194, 0.16);
  border-radius: 50%;
  content: "";
}

.about-art-circle::before {
  inset: 45px;
}

.about-art-circle::after {
  inset: 95px;
}

.about-waves {
  position: absolute;
  right: -12px;
  bottom: 0;
  left: -12px;
  width: calc(100% + 24px);
  height: 265px;
  fill: none;
  stroke: var(--teal-500);
  stroke-width: 18px;
}

.about-waves path:nth-child(2) {
  stroke: rgba(18, 189, 194, 0.52);
}

.about-waves path:nth-child(3) {
  stroke: rgba(233, 201, 139, 0.74);
}

.about-art-label {
  position: absolute;
  top: 29px;
  right: 29px;
  width: 132px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(7, 24, 42, 0.43);
  backdrop-filter: blur(8px);
}

.about-art-label span {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 43px;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.about-art-label p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-values {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 38px;
}

.about-values div {
  padding-top: 14px;
  border-top: 2px solid var(--teal-600);
}

.about-values strong,
.about-values span {
  display: block;
}

.about-values strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.about-values span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(18, 189, 194, 0.17), transparent 26%),
    var(--navy-850);
  color: var(--white);
}

.contact::before {
  position: absolute;
  top: 38px;
  left: 8%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(233, 201, 139, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 74px;
  grid-template-columns: 0.9fr 1.1fr;
  padding-top: 114px;
  padding-bottom: 118px;
}

.contact-form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(5, 26, 43, 0.43);
  box-shadow: 0 24px 64px rgba(1, 14, 24, 0.18);
}

.form-row {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
}

.contact-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-200);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.contact-form input {
  height: 48px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 106px;
  padding: 11px 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal-500);
  background: rgba(255, 255, 255, 0.08);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 4px;
}

.form-note {
  max-width: 205px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.45;
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 11px 13px;
  border: 1px solid rgba(18, 189, 194, 0.28);
  border-radius: 10px;
  background: rgba(18, 189, 194, 0.1);
  color: var(--teal-200);
  font-size: 13px;
}

.form-success.is-visible {
  display: block;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.48);
}

.footer-inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-inner .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-inner .brand-mark svg {
  width: 28px;
}

.footer-inner .brand-name {
  font-size: 16px;
}

.footer-inner p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 170px;
    padding-bottom: 180px;
  }

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

  .hero-art {
    justify-content: flex-start;
  }

  .hero-card {
    width: min(100%, 535px);
  }

  .hero-card img {
    max-height: 520px;
    object-position: center 56%;
  }

  .intro-grid,
  .section-heading,
  .approach-inner,
  .pricing,
  .about,
  .contact-inner {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .section-summary {
    margin-left: 0;
  }

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

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

  .about {
    gap: 52px;
  }

  .about-art {
    min-height: 380px;
  }
}

@media (max-width: 740px) {
  .section-wrap {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    top: 10px;
    min-height: 60px;
    padding: 8px 10px 8px 12px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(7, 24, 42, 0.9);
    backdrop-filter: blur(16px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark svg {
    width: 29px;
  }

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

  .menu-toggle {
    display: grid;
    width: 43px;
    height: 43px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 1.5px;
    background: var(--gold-300);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    align-items: stretch;
    background: rgba(7, 24, 42, 0.97);
    box-shadow: 0 18px 34px rgba(1, 13, 25, 0.22);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 9px;
  }

  .site-nav .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero-inner {
    gap: 40px;
    padding-top: 132px;
    padding-bottom: 150px;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 74px);
  }

  .hero-intro {
    margin-top: 23px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 29px;
  }

  .hero-note {
    margin-top: 34px;
    font-size: 10px;
  }

  .hero-card {
    padding: 10px;
    border-radius: 20px;
  }

  .hero-card-topline {
    padding: 2px 2px 10px;
    font-size: 8px;
  }

  .hero-card img {
    max-height: 405px;
    border-radius: 12px;
  }

  .hero-card-caption {
    padding: 10px 2px 2px;
  }

  .hero-card-caption p {
    max-width: 220px;
    font-size: 10px;
  }

  .caption-number {
    font-size: 26px;
  }

  .orbit-one {
    top: -12px;
    right: -36px;
    width: 250px;
    height: 250px;
  }

  .orbit-two {
    right: -25px;
    bottom: -35px;
    width: 155px;
    height: 155px;
  }

  .hero-wave {
    height: 120px;
  }

  .intro {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .intro-grid {
    gap: 25px;
  }

  .section-title {
    font-size: clamp(43px, 13vw, 58px);
  }

  .intro-copy {
    padding-top: 0;
  }

  .intro-copy p,
  .about-copy > p {
    font-size: 16px;
  }

  .services {
    padding-bottom: 90px;
  }

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

  .section-heading {
    gap: 21px;
    margin-bottom: 29px;
  }

  .section-summary {
    font-size: 15px;
  }

  .service-card {
    padding: 23px;
  }

  .service-card h3 {
    margin-top: 26px;
    font-size: 27px;
  }

  .approach-inner {
    gap: 38px;
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .approach-copy p,
  .contact-copy p {
    font-size: 15px;
  }

  .process-item {
    gap: 10px;
    grid-template-columns: 43px 1fr;
  }

  .process-index {
    font-size: 22px;
  }

  .process-item h3 {
    font-size: 27px;
  }

  .process-item p {
    font-size: 14px;
  }

  .about {
    gap: 42px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .pricing {
    gap: 28px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .pricing-heading p {
    margin-top: 19px;
    font-size: 15px;
  }

  .pricing-card {
    padding: 20px;
  }

  .pricing-card-top,
  .pricing-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-price {
    text-align: left;
  }

  .pricing-footer span {
    text-align: left;
  }

  .about-art {
    min-height: 295px;
  }

  .about-art-circle {
    top: -30px;
    left: 30px;
    width: 255px;
    height: 255px;
  }

  .about-art-label {
    top: 20px;
    right: 20px;
  }

  .about-waves {
    height: 215px;
    stroke-width: 13px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    gap: 32px;
    padding-top: 82px;
    padding-bottom: 85px;
  }

  .contact-form {
    padding: 18px;
  }

  .form-row {
    display: block;
  }

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

  .footer-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding-top: 27px;
    padding-bottom: 27px;
  }
}
