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

:root {
  --sky: #98b6d2;
  --sky-deep: #769abb;
  --ivory: #f4efe4;
  --ink: #151515;
  --muted: #5f666d;
  --line: rgba(21, 21, 21, 0.12);
  --shadow-soft: 0 20px 60px rgba(39, 55, 73, 0.12);
  --shadow-paper: 0 28px 80px rgba(39, 55, 73, 0.18);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --container: 1180px;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-progress: 0;
  --hero-viewport-offset: 5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: var(--sky);
  color: var(--ink);
  text-shadow: none;
}

::-moz-selection {
  background: var(--sky);
  color: var(--ink);
  text-shadow: none;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section-tag {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-deep);
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.8);
}

.inline-accent {
  color: var(--sky-deep);
}

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

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.section-heading p:last-child,
.contact-copy p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
}

.numbered-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-bottom: 0.65rem;
}

.numbered-heading .section-tag {
  margin: 0;
}

.numbered-heading h2 {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  transition: padding 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sky-deep), var(--sky));
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  opacity: 0.85;
}

.site-header.is-scrolled {
  padding: 0.7rem 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(39, 55, 73, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
}

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

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

.hero {
  padding-top: clamp(1.3rem, 2.4vw, 1.85rem);
  padding-bottom: clamp(1.3rem, 2.4vw, 1.85rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(1.35rem, 3.2vw, 2.6rem);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 7.9vw, 6.4rem);
  line-height: 0.84;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  display: block;
  color: var(--sky-deep);
}

.hero-text {
  max-width: 55ch;
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--muted);
}

.hero-text-secondary {
  max-width: 48ch;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    background-color 260ms var(--ease-premium);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 78%);
  transform: translateX(-130%);
  transition: transform 700ms var(--ease-premium);
  pointer-events: none;
  z-index: -1;
}

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

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(130%);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(21, 21, 21, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  justify-self: end;
  margin-right: -1.8rem;
  perspective: 1400px;
}

@media (min-width: 981px) {
  .hero {
    min-height: calc(100svh - var(--hero-viewport-offset));
    display: grid;
    align-items: center;
  }
}

.parallax-node {
  --px: 0px;
  --py: 0px;
  transform: translate3d(var(--px), var(--py), 0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 320ms var(--ease-premium);
}

.hero-orb {
  position: absolute;
  width: clamp(240px, 44vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(180deg, rgba(152, 182, 210, 0.32), rgba(255, 255, 255, 0.08));
  filter: blur(4px);
  animation: orbPulse 8s ease-in-out infinite;
}

.floating-label {
  position: absolute;
  top: -3.4%;
  right: -4%;
  z-index: 4;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  animation: driftLabel 7s ease-in-out infinite;
}

.hero-envelope {
  position: relative;
  width: min(100%, 450px);
  aspect-ratio: 0.98;
  animation: envelopeFloat 7.6s var(--ease-premium) infinite;
}

.hero-envelope::before,
.hero-envelope::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 42px;
}

.hero-envelope::before {
  inset: 6% 8% 12% 10%;
  background:
    linear-gradient(145deg, rgba(235, 228, 216, 0.92), rgba(250, 247, 241, 0.9));
  transform: rotate(-8deg);
  box-shadow: 0 22px 80px rgba(39, 55, 73, 0.14);
}

.hero-envelope::after {
  inset: 10% 4% 8% 12%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(21, 21, 21, 0.08);
  transform: rotate(4deg);
  opacity: 0.7;
}

.hero-video-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.hero-video-frame {
  position: relative;
  width: 76%;
  height: 76%;
  overflow: hidden;
  border-radius: 34px;
  background: #ebe4d8;
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow:
    0 24px 70px rgba(39, 55, 73, 0.2),
    0 0 0 10px rgba(255, 255, 255, 0.46);
}

.hero-video-frame::before,
.hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-video-frame::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.08)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 35%);
}

.hero-video-frame::after {
  inset: auto -10% -30% auto;
  width: 62%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 182, 210, 0.3), transparent 72%);
  filter: blur(10px);
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  filter: saturate(0.98) contrast(1.03);
  background: #ebe4d8;
}

.manifest-frame {
  border-radius: var(--radius-xl);
  overflow: clip;
  box-shadow: var(--shadow-paper);
}

.manifest {
  padding-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.manifest-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 270px;
  padding: clamp(1.7rem, 3.4vw, 2.7rem);
  background: linear-gradient(180deg, #9ebcdc, #8eafce);
  color: #fff;
}

.manifest-top h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 8.5rem);
  line-height: 0.85;
}

.manifest-arrow {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.manifest-card {
  display: flex;
  justify-content: center;
  padding:
    clamp(2rem, 3vw, 2.55rem)
    clamp(1.55rem, 2.6vw, 2.2rem);
  background: rgba(244, 239, 228, 0.94);
}

.manifest-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  gap: 1.2rem 2rem;
}

.manifest-columns p {
  margin: 0;
  line-height: 1.8;
  color: #43484d;
}

.manifest-columns > p:not(:first-child) {
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}

.manifest-columns > p:first-child {
  grid-column: 1 / -1;
  width: min(100%, 46ch);
  max-width: 46ch;
  margin: 0 auto;
  justify-self: center;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.42;
  color: #22272b;
}

.manifest-columns > p:last-child {
  grid-column: 1 / -1;
  width: min(100%, 62ch);
  max-width: 62ch;
  margin: 0 auto;
  justify-self: center;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.about-gallery {
  padding-top: clamp(1.5rem, 3vw, 2.4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.about-gallery-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(152, 182, 210, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 239, 228, 0.5));
  box-shadow: var(--shadow-soft);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.about-gallery-card {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(39, 55, 73, 0.1);
}

.about-gallery-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-gallery-image-soft {
  object-position: center center;
}

.about-gallery-image-window {
  object-position: center center;
}

.about-gallery-image-door {
  object-position: center 42%;
}

.identity-grid,
.services-grid,
.faq-grid,
.profiles-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

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

.identity {
  padding-top: clamp(1.5rem, 3vw, 2.4rem);
}

.identity-card,
.service-card,
.channel-card,
.contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-soft);
  transition:
    transform 320ms var(--ease-premium),
    box-shadow 320ms var(--ease-premium),
    border-color 320ms var(--ease-premium),
    background-color 320ms var(--ease-premium);
}

.identity-card::after,
.service-card::after,
.channel-card::after,
.contact-form::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 26%, rgba(255, 255, 255, 0.78) 46%, transparent 64%);
  transform: translateX(-130%);
  opacity: 0;
  transition: transform 850ms var(--ease-premium), opacity 320ms ease;
  pointer-events: none;
}

.identity-card {
  min-height: 320px;
  padding: 1.6rem;
}

.identity-card h3,
.service-card h3,
.channel-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.identity-card p,
.service-card p,
.channel-card p {
  color: var(--muted);
  line-height: 1.7;
}
.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #2e3134;
  line-height: 1.8;
}

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

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

.service-card {
  padding: 1.7rem;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.card-emphasis {
  background: linear-gradient(180deg, rgba(152, 182, 210, 0.92), rgba(152, 182, 210, 0.76));
  border-color: rgba(118, 154, 187, 0.32);
  color: #fff;
}

.card-emphasis::after {
  top: -22%;
  right: auto;
  bottom: -22%;
  left: -44%;
  width: 42%;
  border-radius: 40px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 18%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.06) 82%,
    transparent 100%
  );
  filter: blur(8px);
  transform: translateX(0) skewX(-18deg);
  transition: transform 900ms var(--ease-premium), opacity 260ms ease;
}

.card-emphasis h3,
.card-emphasis p,
.card-emphasis li {
  color: rgba(255, 255, 255, 0.92);
}

.card-emphasis li::marker {
  color: rgba(255, 255, 255, 0.82);
}

.card-emphasis ul {
  color: rgba(255, 255, 255, 0.92);
}

.card-emphasis:hover,
.card-emphasis:focus-within {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(141, 174, 204, 0.96), rgba(141, 174, 204, 0.8));
  border-color: rgba(118, 154, 187, 0.38);
  box-shadow: 0 26px 72px rgba(39, 55, 73, 0.16);
}

.card-emphasis:hover h3,
.card-emphasis:hover p,
.card-emphasis:hover li,
.card-emphasis:focus-within h3,
.card-emphasis:focus-within p,
.card-emphasis:focus-within li {
  color: rgba(255, 255, 255, 0.94);
}

.card-emphasis:hover::after,
.card-emphasis:focus-within::after {
  opacity: 0.92;
  transform: translateX(320%) skewX(-18deg);
}

.service-card:not(.card-emphasis):hover,
.service-card:not(.card-emphasis):focus-within,
.identity-card:hover,
.identity-card:focus-within,
.channel-card:hover,
.channel-card:focus-within,
.contact-form:hover,
.contact-form:focus-within {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(118, 154, 187, 0.3);
  box-shadow: 0 26px 72px rgba(39, 55, 73, 0.16);
}

.identity-card:hover::after,
.identity-card:focus-within::after,
.service-card:not(.card-emphasis):hover::after,
.service-card:not(.card-emphasis):focus-within::after,
.channel-card:hover::after,
.channel-card:focus-within::after,
.contact-form:hover::after,
.contact-form:focus-within::after {
  opacity: 1;
  transform: translateX(130%);
}


.channel-card {
  padding: 1.8rem;
  min-height: 320px;
}

.faq-card {
  min-height: 250px;
}

.profile-card {
  min-height: 340px;
}

.channel-card-editorial {
  background: linear-gradient(180deg, rgba(244, 239, 228, 0.94), rgba(255, 255, 255, 0.72));
}

.channel-card-organic {
  background: linear-gradient(180deg, rgba(152, 182, 210, 0.92), rgba(152, 182, 210, 0.7));
  color: #fff;
}

.channel-card-organic:hover,
.channel-card-organic:focus-within {
  background: linear-gradient(180deg, rgba(141, 174, 204, 0.96), rgba(141, 174, 204, 0.78));
}

.channel-card-organic p,
.channel-card-organic .channel-pill {
  color: rgba(255, 255, 255, 0.88);
}

.channel-pill {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-deep);
}

.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: start;
  min-height: clamp(640px, 60vw, 760px);
  padding: clamp(1.4rem, 4vw, 2.6rem);
}

.contact-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-paper);
}

.contact-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 239, 228, 0.9) 0%, rgba(244, 239, 228, 0.72) 38%, rgba(255, 255, 255, 0.3) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.contact-showcase {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 0;
  background: #ebe4d8;
  box-shadow: none;
}

.contact-showcase img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 54%;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 2;
}

.contact-form {
  padding: 1.8rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(118, 154, 187, 0.35);
  border-color: rgba(118, 154, 187, 0.6);
}

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

.form-note a,
.footer-link-list a,
.legal-inline-link,
.legal-back-link {
  position: relative;
  width: fit-content;
}

.form-note a::after,
.footer-link-list a::after,
.legal-inline-link::after,
.legal-back-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.form-note a:hover::after,
.form-note a:focus-visible::after,
.footer-link-list a:hover::after,
.footer-link-list a:focus-visible::after,
.legal-inline-link:hover::after,
.legal-inline-link:focus-visible::after,
.legal-back-link:hover::after,
.legal-back-link:focus-visible::after {
  transform: scaleX(1);
}

.form-status {
  margin: 1rem 0 0;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--sky-deep);
}

.form-status.is-error {
  color: #9d4d4d;
}

.contact-form .button[disabled] {
  cursor: wait;
  opacity: 0.82;
  transform: none;
}

.site-footer {
  padding: 0 0 2.6rem;
}

.footer-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(152, 182, 210, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(244, 239, 228, 0.7), rgba(255, 255, 255, 0.92));
  box-shadow: var(--shadow-soft);
}

.footer-brand-block .section-tag {
  margin-bottom: 0.8rem;
}

.footer-title {
  margin: 0;
  max-width: none;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.footer-column {
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.footer-column h2 {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-deep);
}

.footer-column p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer-link-list {
  display: grid;
  gap: 0.7rem;
}

.footer-link-list a {
  color: var(--ink);
  font-weight: 700;
}

.social-icons {
  display: grid;
  gap: 0.8rem;
}

.footer-link-list a.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  width: fit-content;
  min-width: 0;
  height: auto;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(39, 55, 73, 0.08);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.footer-link-list a.social-link:hover,
.footer-link-list a.social-link:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(118, 154, 187, 0.28);
  box-shadow: 0 18px 38px rgba(39, 55, 73, 0.12);
}

.footer-link-list a.social-link::after {
  display: none;
}

.footer-link-list a.social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-handle {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 21, 21, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-body {
  background:
    radial-gradient(circle at top left, rgba(152, 182, 210, 0.18), transparent 22%),
    #fff;
}

.legal-main {
  padding: 0 0 4rem;
}

.legal-shell {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.legal-hero {
  margin-bottom: 1.8rem;
}

.legal-back-link {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.legal-hero h1 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.legal-subtitle {
  max-width: 60ch;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.legal-card {
  padding: clamp(1.5rem, 3.4vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.legal-card section + section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.legal-card h2 {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.94;
}

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

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

.legal-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.legal-callout {
  margin-top: 1.2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(118, 154, 187, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(152, 182, 210, 0.12);
  color: #2e3134;
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 640ms ease, transform 640ms ease;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  filter: blur(12px);
  transition:
    opacity 820ms var(--ease-premium),
    transform 820ms var(--ease-premium),
    filter 820ms var(--ease-premium);
  transition-delay: var(--reveal-delay);
}

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

@keyframes orbPulse {
  0%,
  100% {
    scale: 1;
    opacity: 0.88;
  }

  50% {
    scale: 1.08;
    opacity: 1;
  }
}

@keyframes envelopeFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }

  50% {
    translate: 0 -14px;
    rotate: -0.9deg;
  }
}

@keyframes driftLabel {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .contact-grid,
  .identity-grid,
  .services-grid,
  .faq-grid,
  .profiles-grid,
  .manifest-columns,
  .about-gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
    justify-self: stretch;
    margin-right: 0;
  }

  .contact-grid {
    min-height: auto;
  }

  .contact-stage::after {
    background:
      linear-gradient(180deg, rgba(244, 239, 228, 0.92) 0%, rgba(244, 239, 228, 0.74) 42%, rgba(255, 255, 255, 0.36) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  }

  .hero-copy {
    min-height: auto;
  }

  .manifest-top {
    min-height: 225px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 0.75rem;
    padding-bottom: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.95rem, 15.2vw, 4.25rem);
  }

  .hero-text {
    font-size: 0.95rem;
    line-height: 1.56;
  }

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

  .hero-envelope {
    width: min(100%, 300px);
  }

  .floating-label {
    top: -4%;
    right: -2%;
    font-size: 0.68rem;
  }

  .hero-video-frame {
    width: 80%;
    height: 80%;
    border-radius: 24px;
  }

  .manifest-top {
    min-height: 190px;
  }

  .manifest-top h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
