/* ================================================================
   alsia.tech — editorial portfolio v3
   paper & ink palette, Fraunces + Manrope
   ================================================================ */

:root {
  --paper: #f3efe7;
  --paper-2: #ece7dc;
  --ink: #1a1814;
  --ink-soft: #6e675c;
  --line: rgba(26, 24, 20, 0.14);
  --acc: #e8501f;
  --ok: #2f9e62;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --wrap: 1240px;
  --ease: cubic-bezier(0.22, 0.61, 0.18, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* hide native cursor — JS adds .cur-none when custom cursor activates */
html.cur-none,
html.cur-none a,
html.cur-none button,
html.cur-none label { cursor: none; }

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

::selection { background: rgba(232, 80, 31, 0.25); }

em { font-family: var(--serif); font-style: italic; font-weight: 500; }

sup {
  font-family: var(--sans);
  font-size: 0.4em;
  font-weight: 600;
  color: var(--acc);
  letter-spacing: 0.04em;
  vertical-align: super;
  margin-right: 0.5em;
}

/* ----------------------------------------------------------------
   intro curtain
   ---------------------------------------------------------------- */

.intro {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--ink);
  display: grid;
  place-items: center;
  animation: curtain 0.8s var(--ease) 1.05s forwards;
}

.intro span {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(34px, 5vw, 58px);
  color: var(--paper);
  letter-spacing: -0.02em;
  overflow: hidden;
  animation: introLogo 0.7s var(--ease) 0.12s backwards, introOut 0.4s ease 0.85s forwards;
}
.intro span i { font-style: normal; color: var(--acc); }

@keyframes introLogo {
  from { opacity: 0; transform: translateY(40px); }
}
@keyframes introOut {
  to { opacity: 0; transform: translateY(-30px); }
}
@keyframes curtain {
  to { transform: translateY(-101%); visibility: hidden; }
}

/* ----------------------------------------------------------------
   scroll progress
   ---------------------------------------------------------------- */

.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--acc);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 10000;
}

/* ----------------------------------------------------------------
   header
   ---------------------------------------------------------------- */

.head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
  animation: fadeIn 0.8s var(--ease) 1.5s backwards;
}

.head.is-stuck {
  padding: 14px 0;
  background: rgba(243, 239, 231, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.head__in { display: flex; align-items: center; gap: 32px; }

.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
}
.brand span { color: var(--acc); }
.brand img {
  height: 26px;
  width: auto;
  mix-blend-mode: multiply; /* krem zemin, kağıt arka plana karışır */
}

.head__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 8px;
}
.head__meta .sep { opacity: 0.4; }

.clock { font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }

.status { display: inline-flex; align-items: center; gap: 7px; }
.status i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.35; } }

.head__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 600;
}

.head__nav a:not(.head__cta) {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.head__nav a:not(.head__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.head__nav a:not(.head__cta):hover,
.head__nav a:not(.head__cta).act { color: var(--ink); }
.head__nav a:not(.head__cta):hover::after,
.head__nav a:not(.head__cta).act::after { transform: scaleX(1); transform-origin: left; }

.head__cta {
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 9px 22px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.head__cta:hover { background: var(--ink); color: var(--paper); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  margin-left: auto;
  z-index: 102;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ----------------------------------------------------------------
   hero
   ---------------------------------------------------------------- */

.hero {
  min-height: 100vh; /* svh desteklemeyen eski tarayıcılar için */
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 0;
}

.hero__wrap { position: relative; width: 100%; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 26px;
  animation: fadeIn 0.9s var(--ease) 1.1s backwards;
}
.hero__eyebrow i { font-style: normal; color: var(--acc); }

/* rotating word */
.rotor {
  display: inline-block;
  height: 1.5em;
  overflow: hidden;
  vertical-align: bottom;
}
.rotor__list {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease);
}
.rotor__list span {
  display: block;
  height: 1.5em;
  line-height: 1.5em;
  color: var(--acc);
  white-space: nowrap;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(30px, 7.4vw, 94px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.hero__title em { font-weight: 480; color: var(--acc); }

.ast {
  font-style: normal;
  color: var(--acc);
  display: inline-block;
  font-size: 0.55em;
  vertical-align: 0.45em;
  margin-left: 0.12em;
  animation: spin 9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* line-by-line reveal */
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line > span {
  display: inline-block;
  transform: translateY(115%);
  animation: lineUp 1s var(--ease) forwards;
}
.line:nth-child(1) > span { animation-delay: 1.15s; }
.line:nth-child(2) > span { animation-delay: 1.27s; }
.line:nth-child(3) > span { animation-delay: 1.39s; }

@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 46px;
  animation: fadeIn 1s var(--ease) 1.65s backwards;
}

.hero__sub {
  max-width: 540px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-soft);
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 15.5px;
  padding: 17px 32px;
  border-radius: 999px;
  transition: background 0.3s var(--ease);
  will-change: transform;
}
.btn-ink:hover { background: var(--acc); }

.btn-ink__arr {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}
.btn-ink:hover .btn-ink__arr { transform: translateX(5px); }

.link-arr {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.link-arr span { display: inline-block; transition: transform 0.3s var(--ease); }
.link-arr:hover { color: var(--ink); border-color: var(--ink); }
.link-arr:hover span { transform: translateY(4px); }

/* rotating circular badge */
.badge {
  position: absolute;
  right: clamp(8px, 3vw, 40px);
  top: -34px;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  animation: fadeIn 0.9s var(--ease) 1.9s backwards;
}

.badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 16s linear infinite;
}
.badge:hover svg { animation-play-state: paused; }

.badge text {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.1px;
  fill: var(--ink);
}

.badge__arr {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 20px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.badge:hover .badge__arr { background: var(--acc); transform: scale(1.08); }

.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: clamp(56px, 9vh, 110px);
  padding-bottom: 40px;
  animation: fadeIn 1s var(--ease) 1.85s backwards;
}

.fact {
  border-top: 1.5px solid var(--ink);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fact__k {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.fact__v { font-weight: 600; font-size: 15.5px; }

/* ----------------------------------------------------------------
   marquee
   ---------------------------------------------------------------- */

.marq {
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: 18px 0;
  overflow: hidden;
  background: var(--paper);
  will-change: transform;
}

.marq__track {
  display: flex;
  width: max-content;
  animation: marq 26s linear infinite;
}

.marq--rev { border-bottom: 0; }
.marq--rev .marq__track { animation-direction: reverse; }

.marq__track span {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.marq__track i {
  font-style: normal;
  color: var(--acc);
  margin: 0 0.55em;
}

@keyframes marq { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------
   sections
   ---------------------------------------------------------------- */

.sec { padding: clamp(90px, 12vh, 150px) 0; }
.sec--tight { padding-top: 0; }

.sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(44px, 6vh, 72px);
}

.sec__title {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sec__note {
  font-size: 14px;
  color: var(--ink-soft);
  text-align: right;
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   split text (word-by-word reveal)
   ---------------------------------------------------------------- */

.js [data-split] .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.js [data-split] .w > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.85s var(--ease);
  transition-delay: calc(var(--wi, 0) * 60ms);
}
.js [data-split].in .w > span { transform: translateY(0); }

/* fade variant — words light up one by one */
.js [data-split="fade"] .w { overflow: visible; padding: 0; margin: 0; }
.js [data-split="fade"] .w > span {
  transform: none;
  opacity: 0.12;
  transition: opacity 0.5s ease;
  transition-delay: calc(var(--wi, 0) * 45ms);
}
.js [data-split="fade"].in .w > span { opacity: 1; }

/* ----------------------------------------------------------------
   services (editorial rows)
   ---------------------------------------------------------------- */

.srv { border-top: 1.5px solid var(--ink); }

.srv__row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr auto 40px;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(26px, 3.6vh, 40px) clamp(4px, 1vw, 16px);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  cursor: default;
}

/* ink fill slides up on hover */
.srv__row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease);
  z-index: 0;
}
.srv__row:hover::before { transform: scaleY(1); transform-origin: top; }

.srv__row > * { position: relative; z-index: 1; transition: color 0.35s var(--ease); }

.srv__no {
  font-size: 14px;
  font-weight: 700;
  color: var(--acc);
  font-variant-numeric: tabular-nums;
}

.srv__main h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(22px, 2.6vw, 31px);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  transition: transform 0.45s var(--ease), color 0.35s var(--ease);
}
.srv__row:hover .srv__main h3 { transform: translateX(10px); }

.srv__main p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 620px;
}

.srv__tags {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}

.srv__arr {
  font-size: 22px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.srv__row:hover .srv__main h3,
.srv__row:hover .srv__no { color: var(--paper); }
.srv__row:hover .srv__main p,
.srv__row:hover .srv__tags { color: rgba(243, 239, 231, 0.65); }
.srv__row:hover .srv__arr { opacity: 1; transform: translateX(0); color: var(--acc); }

/* ----------------------------------------------------------------
   studio / about
   ---------------------------------------------------------------- */

.about {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.about__label { position: sticky; top: 110px; }

.about__lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(23px, 2.8vw, 33px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

.about__body > p:not(.about__lead) {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 18px;
}

.how { margin-top: 48px; border-top: 1.5px solid var(--ink); padding-top: 28px; }

.how h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 22px;
  margin-bottom: 20px;
}

.how ol { counter-reset: step; display: flex; flex-direction: column; gap: 16px; }

.how li {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 600px;
}
.how li b { color: var(--ink); font-weight: 700; }
.how li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--acc);
}

/* stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: clamp(70px, 10vh, 110px);
  border-top: 1.5px solid var(--ink);
  padding-top: 8px;
}

.stat { padding-top: 22px; }

.stat__n {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(44px, 5.4vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.stat__n b { font-weight: inherit; font-variant-numeric: tabular-nums; }

.stat__l {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ----------------------------------------------------------------
   faq
   ---------------------------------------------------------------- */

.faqwrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.faq { border-top: 1.5px solid var(--ink); }

.faq__item { border-bottom: 1.5px solid var(--ink); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 24px 4px;
}

.faq__q span {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.faq__q:hover span { color: var(--acc); }

.faq__ico {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq__ico::before,
.faq__ico::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), background 0.3s;
}
.faq__ico::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__item.open .faq__ico { background: var(--ink); }
.faq__item.open .faq__ico::before,
.faq__item.open .faq__ico::after { background: var(--paper); }
.faq__item.open .faq__ico::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.faq__a > div { overflow: hidden; }
.faq__a p {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 560px;
  padding: 0 4px 26px;
}
.faq__item.open .faq__a { grid-template-rows: 1fr; }

/* ----------------------------------------------------------------
   contact (dark band)
   ---------------------------------------------------------------- */

.cta {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(100px, 13vh, 160px) 0 0;
  text-align: center;
  overflow: hidden;
}

.cta__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.55);
  margin-bottom: 22px;
}
.cta__label sup { font-size: 11px; vertical-align: baseline; }

.cta__title {
  font-family: var(--serif);
  font-weight: 530;
  font-size: clamp(38px, 6.4vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 22px;
}
.cta__title em { color: var(--acc); }

.cta__sub {
  max-width: 520px;
  margin: 0 auto 48px;
  color: rgba(243, 239, 231, 0.65);
  font-size: 17px;
}

.cta__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 26px;
}

.mail-big {
  position: relative;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 4vw, 44px);
  letter-spacing: -0.01em;
  padding-bottom: 6px;
}
.mail-big::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--acc);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.mail-big:hover::after { transform: scaleX(1); }

.copy {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(243, 239, 231, 0.6);
  border: 1.5px solid rgba(243, 239, 231, 0.25);
  border-radius: 999px;
  padding: 9px 18px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.copy:hover { color: var(--paper); border-color: var(--paper); }
.copy.is-done { color: var(--ink); background: var(--paper); border-color: var(--paper); }

.cta__lines {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(243, 239, 231, 0.8);
  border: 1.5px solid rgba(243, 239, 231, 0.25);
  border-radius: 999px;
  padding: 12px 24px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease);
}
.pill:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  transform: translateY(-3px);
}

.cta__note { font-size: 14px; color: rgba(243, 239, 231, 0.45); }

/* giant outlined wordmark */
.giant {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(52px, 15.5vw, 230px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: clamp(60px, 9vh, 110px);
  margin-bottom: -0.14em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(243, 239, 231, 0.28);
  user-select: none;
  transition: color 0.8s var(--ease), -webkit-text-stroke-color 0.8s var(--ease);
}
.giant:hover {
  color: var(--acc);
  -webkit-text-stroke-color: var(--acc);
}

/* ----------------------------------------------------------------
   footer
   ---------------------------------------------------------------- */

.foot {
  background: var(--ink);
  color: rgba(243, 239, 231, 0.55);
  border-top: 1px solid rgba(243, 239, 231, 0.12);
  padding: 26px 0;
  font-size: 14px;
}

.foot__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.foot__mid { font-family: var(--serif); font-style: italic; }

.foot__top { font-weight: 700; transition: color 0.25s; }
.foot__top:hover { color: var(--paper); }

/* ----------------------------------------------------------------
   custom cursor (dot + trailing ring)
   ---------------------------------------------------------------- */

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--acc);
  pointer-events: none;
  z-index: 10003;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s, width 0.2s var(--ease), height 0.2s var(--ease);
}

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(232, 80, 31, 0.85);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10002;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  opacity: 0;
  background: transparent;
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease),
              opacity 0.25s;
}

.cursor span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--paper);
  opacity: 0;
  transition: opacity 0.2s;
}

.cursor.is-on, .cursor-dot.is-on { opacity: 1; }

.cursor.is-hover {
  width: 60px; height: 60px;
  background: rgba(232, 80, 31, 0.1);
}

.cursor.is-label {
  width: 80px; height: 80px;
  background: var(--acc);
  border-color: var(--acc);
}
.cursor.is-label span { opacity: 1; }

.cursor.is-down { width: 26px; height: 26px; }
.cursor-dot.is-down { width: 12px; height: 12px; }

@media (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

/* ----------------------------------------------------------------
   reveal on scroll
   ---------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--rd, 0s);
}
.js [data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   responsive
   ---------------------------------------------------------------- */

@media (max-width: 1100px) {
  .badge { display: none; }
}

@media (max-width: 1024px) {
  .head__meta { display: none; }
  .srv__row { grid-template-columns: 52px 1fr 32px; }
  .srv__tags { display: none; }
}

@media (max-width: 860px) {
  .hero__row { flex-direction: column; align-items: flex-start; gap: 30px; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); }
  .about, .faqwrap { grid-template-columns: 1fr; }
  .about__label { position: static; }
  .sec__head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sec__note { text-align: left; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
}

@media (max-width: 768px) {
  .head__nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 0 clamp(24px, 8vw, 48px);
    background: var(--paper);
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease);
    z-index: 101;
  }
  .head__nav.is-open { transform: translateY(0); }

  .head__nav a:not(.head__cta) {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 560;
    color: var(--ink);
    padding: 8px 0;
  }
  .head__nav a:not(.head__cta)::after { display: none; }

  .head__cta { margin-top: 22px; font-size: 17px; padding: 13px 30px; }

  .burger { display: flex; }

  .srv__row { grid-template-columns: 1fr; gap: 8px; padding: 26px 4px; }
  .srv__no { order: -1; }
  .srv__arr { display: none; }
  .srv__row:hover::before { display: none; }
  .srv__row:hover .srv__main h3 { transform: none; color: var(--ink); }
  .srv__row:hover .srv__main p { color: var(--ink-soft); }
  .srv__row:hover .srv__no { color: var(--acc); }
}

@media (max-width: 560px) {
  .hero { padding-top: 110px; }
  .hero__eyebrow { font-size: 11.5px; letter-spacing: 0.12em; }
  .hero__title { font-size: clamp(28px, 8.4vw, 42px); }
  .hero__facts { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .btn-ink { padding: 15px 28px; }
  .cta__mail { flex-direction: column; }
  .stats { grid-template-columns: 1fr 1fr; }
  .sec__title { font-size: clamp(30px, 8vw, 40px); }
  .cta__title { font-size: clamp(32px, 9vw, 44px); }
  .mail-big { font-size: clamp(20px, 6.4vw, 28px); }
}
