:root {
  --ink: #211f20;
  --charcoal: #373536;
  --rose: #9a727b;
  --rose-ink: #734f58;
  --blush: #f3dcda;
  --paper: #f9f3f0;
  --line: rgba(55, 53, 54, 0.2);
  --sans: "DM Sans", sans-serif;
  --arabic: "Alexandria", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible {
  outline: 2px solid var(--rose-ink);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 10px;
  left: 50%;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  transform: translate(-50%, -160%);
}

.skip-link:focus-visible {
  transform: translate(-50%, 0);
}

.site-shell {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100dvh;
  overflow: hidden;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 28px clamp(24px, 6vw, 94px) 0;
  overflow: hidden;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(154, 114, 123, 0.14) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  width: 35vw;
  height: 35vw;
  max-width: 540px;
  max-height: 540px;
  content: "";
  border-radius: 50%;
  filter: blur(0);
}

.hero::before {
  top: -21vw;
  right: -11vw;
  background: var(--blush);
}

.hero::after {
  bottom: -25vw;
  left: -18vw;
  border: 1px solid var(--rose);
}

.topline {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: clamp(28px, 5vh, 64px);
  color: var(--charcoal);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.topline-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(330px, 1.08fr);
  align-items: center;
  flex: 1 1 auto;
  max-width: 1230px;
  margin: 0 auto;
  min-height: 0;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
  padding-bottom: 16px;
  animation: rise-in 0.75s 0.1s both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(3.65rem, 7vw, 7.25rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

h1 em {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08em;
  font-weight: 400;
}

.intro {
  max-width: 390px;
  margin-bottom: 31px;
  color: rgba(33, 31, 32, 0.76);
  font-size: 1.07rem;
  line-height: 1.65;
}

.hero-copy .socials {
  margin-top: 18px;
}

.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  animation: logo-arrive 0.85s 0.2s both;
}

.logo-stage::before {
  position: absolute;
  width: min(43vw, 495px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid var(--rose);
  border-radius: 50%;
  opacity: 0.7;
}

.logo-stage::after {
  position: absolute;
  width: min(35vw, 405px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(154, 114, 123, 0.38);
  border-radius: 50%;
  transform: rotate(33deg) scaleX(0.64);
}

.logo-stage img {
  position: relative;
  z-index: 2;
  width: min(37vw, 430px);
  height: auto;
  min-width: 315px;
  mix-blend-mode: multiply;
}

.thread {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--rose);
  border-radius: 50%;
}

.thread-one {
  top: 3%;
  left: 12%;
  width: 80px;
  height: 120px;
  border-bottom-color: transparent;
  transform: rotate(-48deg);
}

.thread-two {
  right: 3%;
  bottom: 11%;
  width: 160px;
  height: 70px;
  border-right-color: transparent;
  transform: rotate(22deg);
}

.launch-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 15px;
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.94rem, 1.5vw, 1.18rem);
  font-style: italic;
  line-height: 1.1;
  transform: rotate(-7deg);
}

.launch-note span {
  color: var(--rose);
}

.service-strip {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1230px;
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid var(--line);
}

.service-strip article {
  min-height: 104px;
  padding: 17px 22px 14px 0;
  border-right: 1px solid var(--line);
}

.service-strip article + article {
  padding-left: clamp(18px, 3vw, 46px);
}

.service-strip article:last-child {
  border-right: 0;
}

.service-number {
  display: block;
  margin-bottom: 17px;
  color: var(--rose-ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-strip h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(0.92rem, 1.35vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(280px, 1.3fr);
  gap: clamp(36px, 9vw, 160px);
  align-items: center;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 10vw, 170px);
  background: var(--ink);
  color: var(--paper);
}

.manifesto-mark {
  display: grid;
  place-items: center;
  width: clamp(145px, 20vw, 250px);
  aspect-ratio: 1;
  border: 1px solid rgba(243, 220, 218, 0.48);
  border-radius: 50%;
  color: var(--blush);
  font-family: var(--arabic);
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  font-weight: 500;
  letter-spacing: 0;
  transform: rotate(-12deg);
}

.manifesto-copy {
  max-width: 650px;
}

.manifesto .eyebrow {
  margin-bottom: 18px;
  color: var(--blush);
}

.manifesto h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

.manifesto-copy > p:last-child {
  max-width: 515px;
  margin-bottom: 0;
  color: rgba(249, 243, 240, 0.7);
  font-size: 1rem;
  line-height: 1.75;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(24px, 6vw, 94px);
  background: var(--blush);
}

.footer-note,
.copyright {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.copyright {
  text-align: right;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(55, 53, 54, 0.38);
  border-radius: 50%;
  color: var(--ink);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.socials .instagram-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.socials .map-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials .email-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--ink);
  color: var(--blush);
  transform: translateY(-3px);
}

.copyright a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.socials a::after {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  padding: 5px 7px;
  content: attr(data-tooltip);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.socials a:hover::after,
.socials a:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-arrive {
  from {
    opacity: 0;
    transform: scale(0.91) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

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

@media (max-width: 760px) {
  .hero {
    padding-top: 16px;
  }

  .topline {
    margin-bottom: 20px;
  }

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

  .hero-copy {
    padding-bottom: 4px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .intro {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .logo-stage {
    height: 100%;
    margin-top: 0;
  }

  .logo-stage::before {
    width: 70vw;
  }

  .logo-stage::after {
    width: 56vw;
  }

  .logo-stage img {
    width: auto;
    height: min(40vw, 180px);
    max-width: min(70vw, 320px);
    max-height: 100%;
    min-width: 0;
  }

  .launch-note {
    right: 4%;
    bottom: 8px;
  }

  .service-strip {
    margin-top: 0;
  }

  .service-strip article {
    min-height: 82px;
    padding: 12px 10px 10px 0;
  }

  .service-strip article + article {
    padding-left: 14px;
  }

  .service-strip h2 {
    font-size: 0.76rem;
  }

  .service-number {
    margin-bottom: 8px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .manifesto-mark {
    width: 130px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 72px;
    padding: 9px 24px;
  }

  .footer-note {
    grid-column: 1 / -1;
  }

  .copyright {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .topline {
    font-size: 0.61rem;
  }

  .service-strip h2 {
    font-size: 0.66rem;
  }

  .service-number {
    font-size: 0.61rem;
  }

  footer {
    gap: 5px;
  }

  .copyright,
  .footer-note {
    font-size: 0.68rem;
  }
}

@media (max-width: 760px) and (max-height: 540px) {
  .hero {
    padding-top: 8px;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  h1 {
    margin-bottom: 8px;
    font-size: clamp(2.2rem, 11vw, 2.8rem);
  }

  .intro {
    margin-bottom: 10px;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .hero-copy .socials {
    gap: 7px;
    margin-top: 10px;
  }

  .socials a {
    width: 32px;
    height: 32px;
  }

  .socials svg {
    width: 13px;
    height: 13px;
  }

  .logo-stage img {
    height: min(25vw, 80px);
  }

  .launch-note {
    right: 2%;
    bottom: 4px;
    font-size: 0.68rem;
  }

  .service-strip article {
    min-height: 72px;
    padding: 8px 6px 6px 0;
  }

  .service-strip article + article {
    padding-left: 10px;
  }

  .service-strip h2 {
    font-size: 0.58rem;
  }

  .service-number {
    margin-bottom: 5px;
    font-size: 0.52rem;
  }

  footer {
    min-height: 58px;
    padding: 6px 14px;
  }

  .copyright,
  .footer-note {
    font-size: 0.58rem;
  }
}