:root {
  color-scheme: light;
  --paper: #f4ecd9;
  --paper-deep: #eadfc8;
  --ink: #14130f;
  --muted: #6e675a;
  --line: rgba(20, 19, 15, 0.16);
  --line-strong: rgba(20, 19, 15, 0.28);
  --accent: #f46857;
  --accent-dark: #d84b3d;
  --olive: #8a7a45;
  --white-glass: rgba(255, 252, 244, 0.68);
  --shadow: 0 20px 45px rgba(67, 48, 25, 0.13);
  --font-sans: "Manrope", Arial, sans-serif;
  --font-display: "Sora", Arial, sans-serif;
  --font-serif: "Sora", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.55;
  background:
    linear-gradient(90deg, rgba(20, 19, 15, 0.06) 1px, transparent 1px) 0 0 / 84px 84px,
    radial-gradient(circle at 22% 12%, rgba(244, 104, 87, 0.12), transparent 28%),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    repeating-radial-gradient(circle at 0 0, rgba(20, 19, 15, 0.08) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

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

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.side-note {
  position: fixed;
  top: 50%;
  z-index: 5;
  color: rgba(20, 19, 15, 0.45);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.side-note.left {
  left: 0;
}

.side-note.right {
  right: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto;
  padding-top: 18px;
}

.topline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 26px;
  color: rgba(20, 19, 15, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.topline span:nth-child(2) {
  text-align: center;
}

.topline span:last-child {
  text-align: right;
}

.topline strong {
  color: var(--accent);
}

.topline i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.nav-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.brand-mark::after {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 800;
}

.site-nav a {
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-color: var(--accent);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.pill-link,
.dark-pill,
.discord-pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
}

.pill-link {
  min-width: 86px;
  gap: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 252, 244, 0.22);
}

.dark-pill {
  min-width: 112px;
  background: var(--ink);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.42);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
  gap: clamp(34px, 5.5vw, 86px);
  align-items: center;
  width: min(1480px, calc(100% - 72px));
  min-height: calc(100vh - 118px);
  margin: 0 auto;
  padding: 44px 0 64px;
}

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

.discord-pill {
  min-height: 34px;
  padding: 0 15px;
  margin-bottom: 30px;
  border: 1px solid rgba(244, 104, 87, 0.36);
  color: var(--accent);
  background: rgba(244, 104, 87, 0.08);
  font-size: 0.76rem;
}

.discord-pill span {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.meta-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.meta-line span:last-child {
  color: rgba(20, 19, 15, 0.48);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.55rem, 6.6vw, 7rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h1 em {
  display: block;
  font-family: var(--font-serif);
  color: var(--accent);
  font-size: 0.66em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.04;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.06rem;
  line-height: 1.2;
}

.hero-copy p {
  max-width: 510px;
  margin: 28px 0 0;
  color: #39352e;
  font-size: 1.02rem;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 58px;
  padding: 0 26px;
  gap: 12px;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 18px 28px rgba(244, 104, 87, 0.28);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: rgba(255, 252, 244, 0.28);
  border-color: var(--line-strong);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(20, 19, 15, 0.13);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.34);
  color: rgba(20, 19, 15, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.hero-proof span::before {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.hero-mini-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(520px, 100%);
  margin-top: 24px;
}

.hero-mini-strip figure {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.45 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.42);
  box-shadow: 0 10px 24px rgba(67, 48, 25, 0.09);
}

.hero-mini-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mini-strip figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(20, 19, 15, 0.72), transparent 62%);
}

.hero-mini-strip figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  z-index: 1;
  color: #fff8eb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  padding: 44px 0 48px;
}

.hero-art img {
  width: min(720px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(20, 19, 15, 0.09);
  box-shadow: 0 24px 60px rgba(67, 48, 25, 0.12);
}

.plate-label,
.plate-footer {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: rgba(20, 19, 15, 0.42);
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plate-label {
  margin-bottom: 22px;
}

.plate-footer {
  margin-top: 22px;
}

.plate-label span,
.plate-footer span {
  color: var(--accent);
}

.process-card {
  position: absolute;
  top: 42%;
  right: 18px;
  display: grid;
  gap: 8px;
  min-width: 120px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(245, 237, 219, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  color: rgba(20, 19, 15, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-card strong,
.process-card span::first-letter {
  color: var(--accent);
}

.corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(20, 19, 15, 0.34);
}

.top-left {
  top: 18px;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.top-right {
  top: 18px;
  right: 0;
  border-top: 1px solid;
  border-right: 1px solid;
}

.bottom-left {
  bottom: 18px;
  left: 0;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.bottom-right {
  right: 0;
  bottom: 18px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.visual-showcase {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto;
  padding: 0 0 clamp(74px, 8vw, 112px);
}

.page-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 138px) 0 clamp(58px, 8vw, 96px);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6.4vw, 7rem);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.page-hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.42);
  padding: 24px;
  box-shadow: 0 18px 42px rgba(67, 48, 25, 0.08);
}

.page-hero-panel strong,
.page-hero-panel span {
  display: block;
}

.page-hero-panel strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.page-hero-panel span {
  margin-top: 10px;
  color: var(--muted);
}

.showcase-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  color: rgba(20, 19, 15, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.showcase-head span {
  color: var(--accent);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.82fr) minmax(260px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.visual-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.36);
  box-shadow: 0 18px 44px rgba(67, 48, 25, 0.1);
}

.visual-card.large {
  min-height: 462px;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(20, 19, 15, 0.82) 0%, rgba(20, 19, 15, 0.24) 48%, rgba(20, 19, 15, 0.05) 100%),
    linear-gradient(90deg, rgba(244, 104, 87, 0.18), transparent 48%);
}

.visual-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: #fff9eb;
}

.visual-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff8a7d;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.visual-card h2 {
  max-width: 620px;
  font-size: clamp(2.1rem, 3.4vw, 3.8rem);
}

.visual-card h3 {
  max-width: 330px;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 800;
  line-height: 1.08;
}

.section {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.section-kicker {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.section-heading.wide {
  display: block;
  max-width: 1060px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.intro-stats div {
  padding: 24px;
  background: rgba(255, 252, 244, 0.36);
}

.intro-stats strong,
.intro-stats span {
  display: block;
}

.intro-stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.intro-stats span {
  margin-top: 10px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card,
.copy-panel,
.why-list div {
  background: rgba(255, 252, 244, 0.44);
}

.service-card {
  min-height: 216px;
  padding: 24px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 1;
  background: rgba(255, 252, 244, 0.74);
  box-shadow: 0 18px 34px rgba(67, 48, 25, 0.1);
  transform: translateY(-4px);
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  min-height: 74px;
  margin-bottom: 20px;
}

.service-top span {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  font-family: var(--font-display);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 19, 15, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.44);
  color: var(--ink);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.service-card:hover .service-icon {
  border-color: rgba(244, 104, 87, 0.42);
  background: var(--accent);
  color: #fff;
}

.service-card p,
.copy-panel p,
.why-list span,
.footer p {
  color: var(--muted);
}

.service-card p {
  margin: 12px 0 0;
}

.workflow {
  display: grid;
  gap: 38px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.workflow-grid article {
  min-height: 280px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.6), rgba(255, 252, 244, 0.36)),
    rgba(255, 252, 244, 0.42);
}

.workflow-grid span,
.workflow-grid strong {
  display: block;
  font-family: var(--font-display);
}

.workflow-grid span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.workflow-grid strong {
  margin-top: 72px;
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  line-height: 1;
}

.workflow-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.portfolio-section {
  padding-top: clamp(76px, 9vw, 126px);
}

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  margin-bottom: 38px;
}

.portfolio-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
}

.portfolio-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.42);
  box-shadow: 0 20px 42px rgba(67, 48, 25, 0.09);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.portfolio-card.feature {
  grid-row: span 2;
  min-height: 720px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.portfolio-card:hover {
  border-color: rgba(244, 104, 87, 0.38);
  box-shadow: 0 26px 54px rgba(67, 48, 25, 0.14);
  transform: translateY(-4px);
}

.portfolio-card:hover img {
  transform: scale(1.035);
}

.portfolio-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(20, 19, 15, 0.84) 0%, rgba(20, 19, 15, 0.34) 46%, rgba(20, 19, 15, 0.06) 100%),
    linear-gradient(90deg, rgba(244, 104, 87, 0.16), transparent 54%);
}

.portfolio-copy {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  color: #fff8eb;
}

.portfolio-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff8a7d;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.portfolio-copy h3 {
  max-width: 700px;
  font-size: clamp(1.45rem, 2.55vw, 2.7rem);
  line-height: 1.04;
}

.portfolio-card:not(.feature) .portfolio-copy h3 {
  max-width: 430px;
  font-size: clamp(1.2rem, 1.75vw, 1.8rem);
}

.portfolio-copy p {
  max-width: 540px;
  margin: 14px 0 0;
  color: rgba(255, 248, 235, 0.78);
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 24px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.copy-panel {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(20, 19, 15, 0.04);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.copy-panel:hover {
  border-color: rgba(244, 104, 87, 0.24);
  background: rgba(255, 252, 244, 0.66);
  transform: translateY(-3px);
}

.copy-panel span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.copy-panel p {
  margin: 0;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(38px, 7vw, 96px);
}

.why-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.why-list div {
  padding: 22px;
}

.why-list strong,
.why-list span {
  display: block;
}

.why-list strong {
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.keyword-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 39px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.38);
  color: #494338;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-sans);
}

.footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: 32px;
  align-items: end;
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto;
  padding: 70px 0 86px;
  border-top: 1px solid var(--line);
}

.contact-panel {
  max-width: 900px;
}

.footer h2 {
  max-width: 850px;
}

.footer p {
  max-width: 780px;
  margin: 20px 0 0;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 850px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-methods a,
.contact-methods div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 252, 244, 0.5);
  transition: background 180ms ease, color 180ms ease;
}

.contact-methods a:hover {
  background: var(--ink);
  color: var(--paper);
}

.contact-methods span,
.contact-methods strong {
  display: block;
}

.contact-methods span {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 0.95rem;
  line-height: 1.25;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.5);
  box-shadow: 0 18px 42px rgba(67, 48, 25, 0.08);
}

.lead-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.lead-form label span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.76);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  padding: 0 14px;
}

.lead-form textarea {
  padding: 14px;
  resize: vertical;
}

.lead-wide-field,
.lead-form-actions {
  grid-column: 1 / -1;
}

.lead-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.lead-form-actions strong {
  color: var(--muted);
}

.fixed-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 20px 42px rgba(20, 19, 15, 0.2);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.fixed-whatsapp:hover {
  background: var(--accent);
  box-shadow: 0 20px 42px rgba(244, 104, 87, 0.28);
  transform: translateY(-3px);
}

.fixed-whatsapp span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.72rem;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(20, 19, 15, 0.05) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(135deg, #f5efe2 0%, #eef0ea 45%, #f7efe6 100%);
}

.admin-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  width: min(1680px, 100%);
  min-height: 100vh;
  margin: 0 auto;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(255, 252, 244, 0.72);
  backdrop-filter: blur(16px);
}

.admin-sidebar .brand {
  margin-bottom: 34px;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #39352e;
  font-family: var(--font-display);
  font-weight: 800;
}

.admin-nav span {
  color: var(--accent);
  font-size: 0.74rem;
}

.admin-nav a:hover,
.admin-nav a[aria-current="page"] {
  border-color: rgba(244, 104, 87, 0.28);
  background: rgba(244, 104, 87, 0.1);
}

.admin-login {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.52);
}

.admin-login > span,
.admin-card-head span,
.admin-preview > span,
.admin-metric span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-login form {
  display: grid;
  gap: 10px;
}

.admin-login label,
.admin-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.admin-login label span,
.admin-form label span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-login input,
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.76);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.admin-login input,
.admin-form input,
.admin-form select {
  padding: 0 14px;
}

.admin-form textarea {
  min-height: 126px;
  padding: 14px;
  resize: vertical;
}

.admin-login .dark-pill {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.admin-login strong {
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-back {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
}

.admin-main {
  min-width: 0;
  padding: 30px 38px 58px;
}

.admin-topbar {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 30px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 3.35rem;
  line-height: 1;
}

.admin-top-actions,
.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(20, 19, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.58);
  color: #39443b;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.admin-metric {
  min-height: 148px;
  padding: 20px;
  background: rgba(255, 252, 244, 0.58);
}

.admin-metric strong,
.admin-metric em {
  display: block;
}

.admin-metric strong {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
}

.admin-metric em {
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.admin-workspace,
.admin-board {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(340px, 0.68fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 22px;
}

.admin-card,
.admin-preview {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.58);
  box-shadow: 0 18px 42px rgba(67, 48, 25, 0.08);
}

.admin-card {
  padding: 24px;
}

.admin-card-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.admin-card-head strong {
  max-width: 340px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.15;
  text-align: right;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-wide-field,
.admin-form label:nth-child(4),
.admin-form-actions {
  grid-column: 1 / -1;
}

.admin-form-actions {
  padding-top: 4px;
}

.admin-form-actions span {
  color: var(--muted);
  font-weight: 800;
}

.admin-editor-section {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.42);
}

.admin-section-head,
.admin-service-item-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.admin-section-head span,
.admin-service-item-head span {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-section-head strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.admin-icon-button,
.admin-service-item-head button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.admin-icon-button:hover,
.admin-service-item-head button:hover {
  border-color: rgba(244, 104, 87, 0.34);
  background: rgba(244, 104, 87, 0.12);
}

.admin-service-item-head button:disabled {
  opacity: 0.42;
  cursor: default;
}

.admin-service-editor,
.admin-portfolio-editor {
  display: grid;
  gap: 10px;
}

.admin-service-item,
.admin-portfolio-item {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.5);
}

.admin-service-fields {
  display: grid;
  grid-template-columns: 82px minmax(160px, 0.72fr) minmax(220px, 1.28fr);
  gap: 12px;
  align-items: start;
}

.admin-portfolio-fields {
  display: grid;
  grid-template-columns: minmax(120px, 0.44fr) minmax(220px, 0.72fr) minmax(240px, 1fr);
  gap: 12px;
  align-items: start;
}

.admin-portfolio-summary {
  grid-column: span 2;
}

.admin-service-summary textarea {
  min-height: 86px;
}

.admin-portfolio-summary textarea {
  min-height: 92px;
}

.admin-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(20, 19, 15, 0.9), rgba(20, 19, 15, 0.76)),
    url("assets/elazig-ajans-collage.png") center / cover;
  color: #fff8eb;
}

.admin-preview h2 {
  margin: 54px 0 0;
  font-size: 2.6rem;
  line-height: 1.02;
}

.admin-preview p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 248, 235, 0.78);
}

.admin-preview-meta {
  display: grid;
  gap: 8px;
  margin: 30px 0;
}

.admin-preview-meta strong,
.admin-preview-meta a {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
}

.admin-preview-meta strong {
  color: #ff8a7d;
}

.admin-preview .btn {
  align-self: flex-start;
}

.admin-lead-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.38fr);
  gap: 12px;
  margin-bottom: 14px;
}

.admin-lead-tools label,
.admin-note-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.admin-lead-tools span,
.admin-note-field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-lead-tools input,
.admin-lead-tools select,
.admin-note-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.72);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.admin-lead-tools input,
.admin-lead-tools select {
  min-height: 44px;
  padding: 0 12px;
}

.admin-note-field textarea {
  min-height: 68px;
  padding: 10px;
  resize: vertical;
}

.admin-note-button {
  justify-self: start;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
}

.admin-note-button:hover {
  border-color: rgba(244, 104, 87, 0.34);
  background: rgba(244, 104, 87, 0.12);
}

.admin-note-button:disabled {
  opacity: 0.52;
  cursor: default;
}

.admin-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.admin-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(140px, 0.88fr) minmax(150px, 0.9fr) minmax(230px, 1.2fr);
  gap: 14px;
  align-items: start;
  min-height: 56px;
  padding: 14px 16px;
  background: rgba(255, 252, 244, 0.62);
}

.admin-table [role="columnheader"] {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-table strong {
  font-family: var(--font-display);
}

.admin-table em {
  display: inline-flex;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 104, 87, 0.12);
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 800;
}

.admin-lead-meta {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.admin-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-status-button {
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid rgba(20, 19, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.68);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
}

.admin-status-button:disabled {
  border-color: rgba(244, 104, 87, 0.28);
  background: rgba(244, 104, 87, 0.14);
  color: var(--accent-dark);
  cursor: default;
}

.admin-timeline {
  display: grid;
  gap: 12px;
}

.admin-timeline div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.46);
}

.admin-timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-timeline strong {
  min-width: 0;
  font-family: var(--font-display);
  line-height: 1.2;
}

.admin-timeline em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .topline {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 18px;
  }

  .topline span,
  .topline span:nth-child(2),
  .topline span:last-child {
    text-align: left;
  }

  .nav-row {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav.open {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(244, 236, 217, 0.98);
    box-shadow: var(--shadow);
  }

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

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

  .hero-copy {
    max-width: 860px;
  }

  .hero-art img {
    width: 100%;
  }

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

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

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

  .visual-card,
  .visual-card.large {
    min-height: 340px;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-nav {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .admin-login {
    margin-top: 24px;
  }

  .admin-workspace,
  .admin-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .page-hero,
  .section,
  .footer,
  .visual-showcase {
    width: min(100% - 34px, 1480px);
  }

  .side-note {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 11.5vw, 4.25rem);
    line-height: 0.96;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .meta-line,
  .section-heading,
  .why,
  .footer {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .solution-grid,
  .lead-form,
  .intro-stats,
  .portfolio-intro,
  .portfolio-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid article {
    min-height: 220px;
  }

  .workflow-grid strong {
    margin-top: 46px;
  }

  .portfolio-actions {
    justify-content: stretch;
  }

  .portfolio-actions .btn {
    flex: 1 1 240px;
  }

  .admin-main {
    padding: 24px 17px 44px;
  }

  .admin-topbar,
  .admin-card-head {
    display: grid;
  }

  .admin-topbar h1 {
    font-size: 2.35rem;
  }

  .admin-top-actions .btn {
    width: auto;
  }

  .admin-metrics,
  .admin-form,
  .admin-lead-tools,
  .admin-service-fields,
  .admin-portfolio-fields,
  .admin-nav {
    grid-template-columns: 1fr;
  }

  .admin-portfolio-summary {
    grid-column: auto;
  }

  .admin-card-head strong {
    text-align: left;
  }

  .admin-table [role="row"] {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px;
  }

  .admin-preview h2 {
    font-size: 2.1rem;
  }

  .portfolio-card,
  .portfolio-card.feature {
    min-height: 380px;
  }

  .hero-art {
    padding-top: 24px;
  }

  .showcase-head {
    display: grid;
    gap: 8px;
  }

  .plate-label,
  .plate-footer {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 12px;
  }

  .topline {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .brand span:last-child {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 30px;
  }

  .meta-line {
    gap: 12px;
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .hero-copy p {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-mini-strip {
    gap: 8px;
    margin-top: 18px;
  }

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

  .hero-mini-strip figcaption {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

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

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .process-card {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .visual-card,
  .visual-card.large {
    min-height: 300px;
  }

  .portfolio-card,
  .portfolio-card.feature {
    min-height: 330px;
  }

  .visual-card div {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .corner,
  .plate-label span,
  .plate-footer span {
    display: none;
  }

  .service-card,
  .copy-panel,
  .workflow-grid article,
  .why-list div,
  .intro-stats div {
    padding: 20px;
  }

  .footer {
    padding-bottom: 110px;
  }

  .fixed-whatsapp {
    right: 17px;
    bottom: 17px;
    left: auto;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    width: 48px;
    height: 48px;
    padding: 6px;
  }

  .fixed-whatsapp strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .fixed-whatsapp span {
    width: 34px;
    height: 34px;
    font-size: 0.68rem;
  }
}
