:root {
  --ink: #f7f0eb;
  --muted: #c9c0bc;
  --dark: #111b22;
  --dark-soft: #17242d;
  --deep: #0b1217;
  --copper: #e7a681;
  --copper-soft: #f2c7ad;
  --sage: #99b4a5;
  --wine: #613a43;
  --line: rgba(247, 240, 235, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Avenir Next, Avenir, Montserrat, Segoe UI, Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 12%, rgba(231, 166, 129, 0.22), transparent 24rem),
    radial-gradient(circle at 88% 24%, rgba(153, 180, 165, 0.14), transparent 28rem),
    linear-gradient(135deg, var(--deep), var(--dark) 48%, #11161b);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.scrolled {
  background: rgba(10, 17, 22, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(8rem, 13vw, 11rem);
  padding: 0.25rem 0;
}

.brand img,
.footer img {
  filter: drop-shadow(0 10px 24px rgba(231, 166, 129, 0.16));
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  color: rgba(247, 240, 235, 0.76);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 0.5rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(231, 166, 129, 0.48);
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button.primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-soft));
  color: #152027;
  border-color: transparent;
  font-weight: 700;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.035);
}

.nav-cta:hover,
.button:hover,
.selector-tabs button:hover {
  transform: translateY(-2px);
  border-color: var(--copper-soft);
}

.menu-button {
  display: none;
  width: 2.8rem;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.menu-button span {
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-open .menu-button span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-button span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.section-band {
  position: relative;
  padding-inline: clamp(1rem, 5vw, 5rem);
}

.hero {
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(18rem, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding-top: 7.5rem;
  padding-bottom: 4rem;
}

.hero-content {
  max-width: 48rem;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--copper-soft);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.1rem;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(2.5rem, 4.9vw, 5.2rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 42rem;
}

h2 {
  margin-bottom: 0;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}

.hero-copy {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: clamp(27rem, 44vw, 42rem);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-logo-plate {
  position: relative;
  width: min(78vw, 27rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 166, 129, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(231, 166, 129, 0.22), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(247, 240, 235, 0.075), transparent 62%);
  box-shadow: var(--shadow);
  animation: float 8s ease-in-out infinite;
}

.hero-logo-plate::before,
.hero-logo-plate::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(247, 240, 235, 0.12);
  border-radius: inherit;
}

.hero-logo-plate::before {
  inset: 1.2rem;
}

.hero-logo-plate::after {
  inset: -1.3rem;
  border-color: rgba(231, 166, 129, 0.12);
}

.hero-logo-plate img {
  width: 58%;
  filter:
    drop-shadow(0 0 24px rgba(231, 166, 129, 0.16))
    drop-shadow(0 22px 42px rgba(0, 0, 0, 0.34));
}

.light-trail {
  position: absolute;
  width: 55%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0.75;
  animation: orbit 12s linear infinite;
}

.light-trail.one {
  transform: rotate(24deg);
}

.light-trail.two {
  animation-duration: 16s;
  transform: rotate(-42deg);
}

.hero-stat {
  grid-column: 1 / -1;
  justify-self: end;
  max-width: 20rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.hero-stat span,
.service-index,
.timeline li > span {
  color: var(--copper);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.hero-stat strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.5;
}

.intro,
.moment-compass,
.difference,
.services,
.experience,
.moments,
.contact,
.legal {
  padding-top: clamp(4rem, 9vw, 8rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
}

.intro-copy h2 {
  max-width: 50rem;
}

.intro-copy p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 1.25rem;
  color: var(--muted);
  line-height: 1.75;
}

.intro-grid,
.service-grid {
  display: grid;
  gap: 1rem;
}

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

.moment-compass {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(19rem, 0.58fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(97, 58, 67, 0.18), transparent),
    radial-gradient(circle at 72% 52%, rgba(231, 166, 129, 0.18), transparent 20rem);
}

.compass-copy {
  max-width: 52rem;
}

.compass-copy p:not(.eyebrow) {
  max-width: 38rem;
  margin-top: 1.25rem;
  color: var(--muted);
  line-height: 1.75;
}

.compass-stage {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.compass-wheel {
  position: relative;
  width: min(74vw, 25rem);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(231, 166, 129, 0.26);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 27, 34, 0.76) 0 44%, rgba(17, 27, 34, 0.18) 45% 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.compass-orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    conic-gradient(from 18deg, rgba(231, 166, 129, 0.34), rgba(153, 180, 165, 0.18), rgba(97, 58, 67, 0.28), rgba(231, 166, 129, 0.34)),
    radial-gradient(circle, transparent 0 44%, rgba(17, 27, 34, 0.18) 45% 100%);
  animation: compassSpin 28s linear infinite;
}

.compass-wheel::before,
.compass-wheel::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(247, 240, 235, 0.13);
  border-radius: inherit;
}

.compass-wheel::after {
  inset: 49.8% 8%;
  height: 1px;
  border: 0;
  background: rgba(247, 240, 235, 0.18);
  transform: rotate(90deg);
}

.compass-point {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(247, 240, 235, 0.14);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: rgba(11, 18, 23, 0.72);
  color: var(--ink);
  font-size: clamp(0.74rem, 1.4vw, 0.88rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.compass-point:hover,
.compass-point:focus-visible,
.compass-point.active {
  color: var(--deep);
  border-color: transparent;
  background: var(--copper-soft);
}

.compass-point:nth-of-type(1) {
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.compass-point:nth-of-type(2) {
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.compass-point:nth-of-type(3) {
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.compass-point:nth-of-type(4) {
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.compass-core {
  position: absolute;
  inset: 50%;
  z-index: 4;
  width: 5.4rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 166, 129, 0.45);
  border-radius: 50%;
  background: rgba(11, 18, 23, 0.78);
  color: var(--copper-soft);
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: 2.7rem;
  transform: translate(-50%, -50%);
}

.compass-core img {
  width: 62%;
  filter: drop-shadow(0 0 16px rgba(231, 166, 129, 0.22));
}

.compass-panel {
  width: min(100%, 25rem);
  min-height: 15.5rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.compass-panel span {
  color: var(--copper-soft);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compass-panel h3 {
  margin-top: 1rem;
}

.compass-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.compass-panel a {
  color: var(--copper-soft);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.difference {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    radial-gradient(circle at 18% 12%, rgba(153, 180, 165, 0.12), transparent 18rem);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
  align-items: stretch;
}

.difference-card {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 82% 10%, rgba(231, 166, 129, 0.14), transparent 9rem);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.difference-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  height: clamp(7.2rem, 10vw, 9.5rem);
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.9) contrast(1.06);
  transition: transform 420ms ease, filter 220ms ease;
}

.difference-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.02) contrast(1.08);
}

.difference-card-feature {
  min-height: 19rem;
  background:
    linear-gradient(150deg, rgba(231, 166, 129, 0.13), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 86% 12%, rgba(153, 180, 165, 0.18), transparent 12rem);
}

.difference-card-feature img {
  aspect-ratio: 16 / 7;
}

.difference-card:hover {
  transform: translateY(-0.4rem);
  border-color: rgba(231, 166, 129, 0.42);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 82% 10%, rgba(231, 166, 129, 0.22), transparent 9rem);
}

.difference-card span {
  margin: 1.15rem 1.25rem 0;
  color: var(--copper);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.difference-card h3 {
  margin-inline: 1.25rem;
  margin-top: 1rem;
}

.difference-card-feature h3 {
  margin-inline: 1.25rem;
  max-width: none;
  font-family: inherit;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
}

.difference-card p {
  margin-inline: 1.25rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.difference-card-feature p {
  margin-inline: 1.25rem;
  max-width: none;
  font-size: 1rem;
}

.difference-card p:last-child {
  margin-bottom: 1.3rem;
}

.network-promise {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  align-items: stretch;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(231, 166, 129, 0.28);
  background:
    linear-gradient(135deg, rgba(97, 58, 67, 0.28), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 84% 18%, rgba(231, 166, 129, 0.16), transparent 16rem);
  backdrop-filter: blur(18px);
}

.network-copy {
  min-width: 0;
}

.network-promise h3 {
  max-width: 54rem;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.network-promise p:not(.eyebrow) {
  max-width: 58rem;
  color: var(--muted);
  line-height: 1.7;
}

.network-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 240, 235, 0.14);
  background: rgba(11, 18, 23, 0.42);
}

.network-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(11, 18, 23, 0.38)),
    radial-gradient(circle at 18% 16%, rgba(231, 166, 129, 0.18), transparent 12rem);
  pointer-events: none;
}

.network-media img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.metric,
.service-card,
.selector,
.contact-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.metric {
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022)),
    radial-gradient(circle at 86% 10%, rgba(231, 166, 129, 0.12), transparent 9rem);
}

.metric span,
.footer span,
.contact-form span {
  color: var(--muted);
  font-size: 0.84rem;
}

.metric strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
}

.metric p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.metric ul {
  display: grid;
  gap: 0.55rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.metric li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(247, 240, 235, 0.82);
  font-size: 0.94rem;
  line-height: 1.45;
}

.metric li::before {
  content: "";
  position: absolute;
  left: 0.12rem;
  top: 0.45rem;
  width: 0.42rem;
  aspect-ratio: 1;
  border: 1px solid var(--copper);
  transform: rotate(45deg);
}

.section-heading {
  max-width: 54rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.difference .section-heading {
  max-width: 72rem;
}

.difference .section-heading h2 {
  max-width: 68rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  align-items: stretch;
}

.service-card {
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  height: clamp(7.2rem, 10vw, 9.5rem);
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.92) contrast(1.06);
  transition: transform 420ms ease, filter 220ms ease;
}

.service-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.08);
}

.service-card .service-index,
.service-card h3,
.service-card p {
  margin-inline: 1.25rem;
}

.service-card .service-index {
  margin-top: 1.2rem;
  margin-bottom: 0;
}

.service-card h3 {
  margin-top: 0.9rem;
}

.service-card p {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

.service-card:hover {
  transform: translateY(-0.45rem);
  border-color: rgba(231, 166, 129, 0.44);
  background: rgba(255, 255, 255, 0.075);
}

.service-card p,
.timeline p,
.package-copy p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.timeline ol {
  display: grid;
  gap: 1.35rem;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.selector {
  position: sticky;
  top: 7rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.selector-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.selector-tabs button {
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.selector-tabs button.active {
  background: var(--ink);
  color: var(--deep);
}

.package-copy {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(1rem, 3vw, 1.5rem);
  background:
    linear-gradient(145deg, rgba(97, 58, 67, 0.6), rgba(23, 36, 45, 0.72)),
    radial-gradient(circle at 85% 16%, rgba(231, 166, 129, 0.38), transparent 12rem);
}

.package-mark {
  width: clamp(3.8rem, 7vw, 5rem);
  align-self: center;
  margin: 0 auto clamp(1.4rem, 3vw, 2rem);
  filter: drop-shadow(0 0 18px rgba(231, 166, 129, 0.28));
  opacity: 0.96;
}

.package-copy span {
  margin-bottom: 0.85rem;
  color: var(--copper-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.moments {
  overflow: hidden;
}

.moment-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  min-height: 0;
  align-items: stretch;
}

.moment-item {
  position: relative;
  min-height: 24rem;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--dark-soft);
}

.moment-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 220ms ease;
}

.moment-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 23, 0.12) 0%, rgba(11, 18, 23, 0.4) 42%, rgba(11, 18, 23, 0.96) 100%),
    radial-gradient(circle at 30% 18%, rgba(231, 166, 129, 0.18), transparent 16rem);
  z-index: 1;
}

.moment-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  mix-blend-mode: screen;
  opacity: 0.22;
  transform: translateX(-44%);
  animation: shimmer 8s ease-in-out infinite;
}

.moment-item.large {
  min-height: 24rem;
}

.moment-item.tall {
  min-height: 24rem;
  align-self: stretch;
}

.moment-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.08);
}

.moment-item div {
  position: relative;
  z-index: 3;
  width: calc(100% - 2rem);
  min-height: 10.8rem;
  display: grid;
  grid-template-rows: 3.4rem auto;
  align-content: start;
  margin: 1rem;
  padding: 1rem;
  border: 1px solid rgba(247, 240, 235, 0.14);
  background: rgba(11, 18, 23, 0.72);
  backdrop-filter: blur(14px);
}

.moment-item span {
  display: block;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(1.35rem, 1.65vw, 1.85rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.moment-item p {
  max-width: none;
  margin: 0.75rem 0 0;
  color: rgba(247, 240, 235, 0.9);
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(1.2rem, 4vw, 3rem);
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.85rem 0.9rem;
  background: rgba(10, 17, 22, 0.56);
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status.success {
  color: var(--copper-soft);
}

.form-status.error {
  color: #f4b4aa;
}

.legal {
  border-top: 1px solid var(--line);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
}

.legal-card {
  min-height: 28rem;
  padding: clamp(1.1rem, 2.4vw, 1.45rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.legal-card h3 {
  margin-bottom: 1.2rem;
  color: var(--copper-soft);
}

.legal-card p,
.legal-note {
  color: var(--muted);
  line-height: 1.65;
}

.legal-card strong {
  color: var(--ink);
}

.legal-note {
  max-width: 58rem;
  margin: 1.2rem 0 0;
  font-size: 0.92rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 5vw, 5rem) 2rem;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem 1rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--copper-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chatbot {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 30;
  font-family: Avenir Next, Avenir, Montserrat, Segoe UI, Arial, sans-serif;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.4rem;
  padding: 0.55rem 0.95rem 0.55rem 0.55rem;
  border: 1px solid rgba(231, 166, 129, 0.5);
  border-radius: 999px;
  background: rgba(11, 18, 23, 0.88);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.chatbot-mark {
  width: 2.35rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 166, 129, 0.42);
  border-radius: 50%;
  background: rgba(247, 240, 235, 0.06);
}

.chatbot-mark img {
  width: 62%;
  filter: drop-shadow(0 0 12px rgba(231, 166, 129, 0.24));
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.85rem);
  width: min(23rem, calc(100vw - 2rem));
  max-height: min(42rem, calc(100svh - 7rem));
  display: none;
  grid-template-rows: auto minmax(12rem, 1fr) auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(231, 166, 129, 0.32);
  background:
    linear-gradient(155deg, rgba(23, 36, 45, 0.96), rgba(11, 18, 23, 0.96)),
    radial-gradient(circle at 86% 12%, rgba(231, 166, 129, 0.18), transparent 12rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.chatbot.open .chatbot-panel {
  display: grid;
}

.chatbot-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.chatbot-head span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--copper-soft);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chatbot-head strong {
  font-size: 1.05rem;
}

.chatbot-head button {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.chatbot-messages {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1rem;
  overflow: auto;
}

.chat-message {
  max-width: 88%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
}

.chat-message p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.chat-message.bot {
  justify-self: start;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 240, 235, 0.9);
}

.chat-message.user {
  justify-self: end;
  border-color: rgba(231, 166, 129, 0.32);
  background: rgba(231, 166, 129, 0.18);
  color: var(--ink);
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.chatbot-suggestions button {
  border: 1px solid rgba(231, 166, 129, 0.34);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 0.82rem;
  cursor: pointer;
}

.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
}

.chatbot-form input {
  min-width: 0;
  border: 1px solid var(--line);
  padding: 0.75rem 0.8rem;
  background: rgba(10, 17, 22, 0.72);
  color: var(--ink);
  outline: none;
}

.chatbot-form input:focus {
  border-color: var(--copper);
}

.chatbot-form button {
  border: 1px solid transparent;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(135deg, var(--copper), var(--copper-soft));
  color: #152027;
  font-weight: 700;
  cursor: pointer;
}

.chatbot-note {
  margin: 0;
  padding: 0 1rem 1rem;
  color: rgba(201, 192, 188, 0.8);
  font-size: 0.78rem;
  line-height: 1.45;
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}

@keyframes orbit {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-44%);
  }
  50% {
    transform: translateX(26%);
  }
}

@keyframes compassSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav,
  .nav-cta {
    display: none;
  }

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

  .menu-open .nav {
    position: fixed;
    inset: 4.7rem 1rem auto 1rem;
    display: grid;
    justify-items: stretch;
    gap: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(10, 17, 22, 0.96);
    backdrop-filter: blur(18px);
  }

  .menu-open .nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .menu-open .nav a:last-child {
    border-bottom: 0;
  }

  .moment-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .moment-item,
  .moment-item.large,
  .moment-item.tall {
    min-height: 18rem;
  }
}

@media (max-width: 980px) {

  .hero,
  .intro,
  .moment-compass,
  .experience,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-media {
    order: -1;
    min-height: 24rem;
  }

  .hero-logo-plate {
    width: min(72vw, 24rem);
  }

  .hero-stat {
    position: static;
    margin-top: 1rem;
  }

  h1 {
    max-width: 38rem;
  }

  .network-promise {
    grid-template-columns: 1fr;
  }

  .network-media img {
    height: 16rem;
    min-height: 16rem;
  }

  .selector {
    position: relative;
    top: 0;
  }

  .compass-wheel {
    justify-self: start;
  }

}

@media (max-width: 640px) {
  .brand {
    width: 8rem;
  }

  .site-header {
    padding: 0.75rem 1rem;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 1.06;
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    max-width: 100%;
    width: 100%;
  }

  .intro-grid,
  .service-grid,
  .difference-grid,
  .moment-strip,
  .selector-tabs {
    grid-template-columns: 1fr;
  }

  .difference-card-feature {
    min-height: 19rem;
  }

  .service-card,
  .metric {
    min-height: 12rem;
  }

  .difference-card img,
  .difference-card-feature img,
  .service-card img {
    aspect-ratio: 16 / 8;
    height: 10rem;
  }

  .network-media img {
    height: 13rem;
    min-height: 13rem;
  }

  .chatbot {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .chatbot-toggle span:last-child {
    display: none;
  }

  .chatbot-panel {
    width: calc(100vw - 1.5rem);
    max-height: calc(100svh - 6rem);
  }

  .moment-item,
  .moment-item.large,
  .moment-item.tall {
    min-height: 19rem;
  }

  .moment-item div {
    min-height: 9.6rem;
    grid-template-rows: 2.8rem auto;
  }

  .moment-item span {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .compass-point {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 0.42rem 0.56rem;
  }

  .compass-point:nth-of-type(2) {
    right: 0.2rem;
  }

  .compass-point:nth-of-type(4) {
    left: 0.2rem;
  }

  .package-copy {
    min-height: 18rem;
  }

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

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

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