/* ============================================================
   AKA — Alexandria Kominsky Agency
   style.css
============================================================ */

/* ─── Custom Properties ─── */
:root {
  /* Core palette — bold, graphic, editorial */
  --black:         #0D0D0D;
  --black-soft:    #1A1A1A;
  --purple:        #9933FF;   /* electric vivid purple */
  --purple-hover:  #7A00EE;
  --purple-light:  #BB77FF;   /* lighter tint for dark backgrounds */
  --purple-pale:   #F0E5FF;   /* very light tint */

  --grey-dark:     #2A2A2A;
  --grey-mid:      #666666;
  --grey-light:    #CCCCCC;
  --grey-pale:     #F2F2F2;

  --paper:         #FAFAFA;
  --white:         #FFFFFF;

  /* Logo PNG crop coords — center inkwell (black on white, 960×720 source)
     Center logo region ≈ x:380–600, y:15–360 (w:220, h:345) */
  --logo-src: url('../images/logos.png');

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease:      0.3s ease;
  --ease-slow: 0.6s ease;

  --container: 1180px;
  --section-v: 108px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
p { color: var(--grey-dark); line-height: 1.8; font-size: 0.9375rem; margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }


/* ============================================================
   LOGO MARK — actual PNG inkwell, cropped via background-image
   Using filter:invert(1) + mix-blend-mode:screen for dark backgrounds
   (white inkwell visible, black bg blends away)
   Using mix-blend-mode:multiply for light backgrounds
   (white bg disappears, black inkwell remains)
============================================================ */

/* Nav / Intro / Footer — dark background version */
.logo-mark {
  width: 26px; height: 40px; flex-shrink: 0;
  background: var(--logo-src) no-repeat;
  background-size: 113px auto;
  background-position: -44px -1px;
  filter: invert(1);
  mix-blend-mode: screen;
}

/* Intro — larger */
.intro-logo {
  width: 145px; height: 212px;
  background: var(--logo-src) no-repeat;
  background-size: 565px auto;
  background-position: -237px -6px;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0;
  animation: logoAppear 0.7s ease 0.3s forwards;
}

/* Footer — slightly smaller */
.logo-mark--footer {
  width: 28px; height: 44px;
  background-size: 122px auto;
  background-position: -47px -2px;
}

/* Contact aside — decorative, light background, multiply blend */
.logo-mark--deco {
  width: 80px; height: 125px;
  background-size: 349px auto;
  background-position: -133px -5px;
  filter: none;
  mix-blend-mode: multiply;
  opacity: 0.12;
}

@keyframes logoAppear {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   INTRO OVERLAY
============================================================ */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  animation: introFadeOut 0.9s ease 3s forwards;
}

@keyframes introFadeOut {
  to { opacity: 0; visibility: hidden; }
}

.intro-inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}

.intro-text-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  opacity: 0;
  animation: introTextIn 0.7s ease 1.1s forwards;
}

@keyframes introTextIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.intro-aka {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  font-weight: 700; color: var(--white);
  letter-spacing: 0.22em; line-height: 1;
  margin-right: -0.22em;
}

.intro-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--purple-light);
  white-space: nowrap;
  margin-right: -0.28em;
}


/* ============================================================
   NAVIGATION
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--ease-slow), padding var(--ease-slow), box-shadow var(--ease-slow);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 2px; color: var(--white);
}

.nav-brand-top {
  display: flex; flex-direction: row; align-items: flex-end; gap: 9px;
}

.logo-aka {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--white); line-height: 1;
}

.logo-full {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple-light); opacity: 0.85;
  padding-left: 0;
}

.nav-links { display: flex; align-items: center; gap: 34px; }

.nav-links li a {
  font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); transition: color var(--ease);
  position: relative;
}

.nav-links li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--purple);
  transform: scaleX(0); transition: transform var(--ease);
  transform-origin: left center;
}

.nav-links li a:hover,
.nav-links li a.active { color: var(--white); }
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--purple);
  padding: 9px 22px; border-radius: 2px;
  color: var(--white) !important;
  transition: background var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--purple-hover) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }


/* ============================================================
   SHARED LAYOUT
============================================================ */
.container {
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
}

.section {
  padding: var(--section-v) 0;
  position: relative; overflow: hidden;
}

.section-label {
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--purple); font-weight: 500; margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600; color: var(--black);
  line-height: 1.18; margin-bottom: 14px;
}

.section-title em { color: var(--purple); font-style: italic; }

.section-sub {
  font-size: 0.9375rem; color: var(--grey-mid);
  max-width: 580px; line-height: 1.75;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* Background ink blot decorations */
.section-blot {
  position: absolute; pointer-events: none;
  opacity: 0.04; color: var(--purple);
}
.section-blot-right  { right: -90px; top: 50%; transform: translateY(-50%); width: 380px; }
.section-blot-left   { left: -80px;  top: 50%; transform: translateY(-50%); width: 340px; }
.section-blot-center {
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 480px; opacity: 0.025;
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer;
  transition: all var(--ease);
}

.btn-primary { background: var(--purple); color: var(--white); }
.btn-primary:hover {
  background: var(--purple-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(153, 51, 255, 0.4);
}

.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.65);
}
.btn-ghost:hover {
  border-color: var(--purple-light); color: var(--purple-light);
  transform: translateY(-2px);
}


/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh; background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 130px 40px 90px;
}

/* Lined paper texture — barely visible */
.hero-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    transparent, transparent 39px,
    rgba(153, 51, 255, 0.025) 39px, rgba(153, 51, 255, 0.025) 40px
  );
}

.hero-decor { position: absolute; inset: 0; pointer-events: none; }

.hero-blot { position: absolute; color: var(--black-soft); }

.hero-blot-1 {
  top: -70px; right: -50px; width: 380px; opacity: 0.9;
  animation: blotFloat 9s ease-in-out infinite;
}
.hero-blot-2 {
  bottom: -55px; left: -36px; width: 270px; opacity: 0.7;
  animation: blotFloat 11s ease-in-out infinite reverse;
}
.hero-blot-3 {
  top: 42%; right: 14%; width: 155px; opacity: 0.5;
  animation: blotFloat 13s ease-in-out infinite 2s;
}

@keyframes blotFloat {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  33%       { transform: translate(7px, -10px) rotate(1.5deg); }
  66%       { transform: translate(-5px, 7px) rotate(-1deg); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.8s ease 3.4s forwards;
}

/* Hero lockup: [inkwell] AKA side by side */
.hero-aka-lockup {
  display: flex; flex-direction: row; align-items: flex-end;
  justify-content: center; gap: 20px;
  margin-bottom: 14px;
  opacity: 0; animation: fadeUp 0.8s ease 3.52s forwards;
}

.hero-aka {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 600; color: var(--white);
  letter-spacing: 0.12em; line-height: 1;
}

/* Full name subtitle beneath the lockup */
.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 400; font-style: normal;
  color: var(--purple-light);
  letter-spacing: 0.26em; text-transform: uppercase; line-height: 1;
  margin-bottom: 56px; white-space: nowrap;
  opacity: 0; animation: fadeUp 0.8s ease 3.64s forwards;
}

/* Hero logo mark — taller than AKA to mirror nav proportion (mark dominates) */
.logo-mark--hero {
  width: 110px; height: 173px;
  background-size: 482px auto;
  background-position: -192px -7px;
  flex-shrink: 0;
}

.hero-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: rgba(255,255,255,0.78); max-width: 560px;
  margin: 0 auto 44px; line-height: 1.5; font-weight: 400;
  opacity: 0; animation: fadeUp 0.8s ease 3.64s forwards;
}

.hero-actions {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 3.76s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.8s ease 4s forwards;
}

.scroll-bar {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 0.7; }
}


/* ============================================================
   ABOUT
============================================================ */
.about-section { background: var(--paper); }

.about-grid {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 80px; align-items: center;
}

.about-photo { position: relative; }

.about-photo {
  width: 100%; aspect-ratio: 5/6;
  border-radius: 2px; overflow: visible; position: relative;
}

.about-photo svg {
  display: block; width: 100%; height: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-photo-border {
  position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--grey-light); border-radius: 2px; z-index: -1;
}

.about-copy .section-label { margin-bottom: 10px; }
.about-copy .section-title { margin-bottom: 22px; }

.about-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.1rem); line-height: 1.7;
  color: var(--purple); border-left: 3px solid var(--purple);
  padding-left: 20px; margin: 28px 0 0;
}
.about-quote cite {
  display: block; font-style: normal;
  font-family: var(--sans); font-size: 0.78rem;
  letter-spacing: 0.08em; color: var(--grey-mid);
  margin-top: 10px;
}

.about-pillars {
  display: flex; align-items: center; gap: 28px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--grey-light);
}

.pillar { display: flex; flex-direction: column; gap: 3px; }

.pillar-head {
  font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 600; color: var(--purple);
}

.pillar-sub {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey-mid);
}

.pillar-rule { width: 1px; height: 38px; background: var(--grey-light); flex-shrink: 0; }


/* ============================================================
   WHAT WE DO
============================================================ */
.what-we-do-section { background: var(--white); }

.what-we-do-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}

.wwd-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 36px 32px;
  border: 1px solid var(--grey-light);
  border-radius: 2px;
  transition: border-color var(--ease), transform var(--ease);
}
.wwd-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.wwd-num {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 700; color: var(--purple); opacity: 0.25;
  line-height: 1;
}

.wwd-card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; color: var(--black);
}

.wwd-card p {
  font-size: 0.9rem; color: var(--grey-mid);
  line-height: 1.75;
}

/* ============================================================
   PROJECTS (legacy styles kept for reference)
============================================================ */
.projects-section { background: var(--white); }

.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}

.project-card {
  display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--ease);
}
.project-card:hover { transform: translateY(-5px); }

.book-cover {
  aspect-ratio: 2/3;
  background: var(--cover, var(--black));
  border-radius: 2px 6px 6px 2px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: -4px 0 10px rgba(0,0,0,0.25), 5px 6px 24px rgba(0,0,0,0.2);
  overflow: hidden;
}

.book-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%);
}

.book-text { padding: 24px; text-align: center; z-index: 1; }

.book-title {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: rgba(255,255,255,0.9);
  line-height: 1.25; margin-bottom: 8px;
}

.book-author {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.book-spine {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 9px; background: rgba(0,0,0,0.3);
}

.project-meta { padding: 0 4px; }

.project-genre {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--purple); font-weight: 500;
}

.project-meta h3 {
  font-family: var(--font-display); font-size: 1.08rem;
  font-weight: 600; color: var(--black);
  margin: 5px 0 3px;
}

.project-byline {
  font-size: 0.875rem; color: var(--grey-mid); font-style: italic;
  margin-bottom: 8px;
}

.project-blurb {
  font-size: 0.875rem; color: var(--grey-dark); line-height: 1.65;
  margin-bottom: 0;
}


/* ============================================================
   MANUSCRIPT WISHLIST
============================================================ */
.wishlist-section { background: var(--grey-pale); }

.wishlist-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}

.wish-card {
  background: var(--white); border-radius: 2px;
  padding: 28px 24px; position: relative; overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: transform var(--ease), box-shadow var(--ease);
}

.wish-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--purple);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}

.wish-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.wish-card:hover::before { transform: scaleX(1); }

.wish-card--no { background: var(--grey-pale); border-color: var(--grey-light); }
.wish-card--no::before { background: var(--grey-mid); }
.wish-card--no .wish-icon { color: var(--grey-mid); }

.wish-icon { width: 36px; height: 36px; color: var(--purple); margin-bottom: 14px; }

.wish-card h3 {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 600; color: var(--black); margin-bottom: 10px;
}

.wish-card p { font-size: 0.875rem; margin-bottom: 14px; }

.wish-list {
  border-top: 1px solid var(--grey-light); padding-top: 12px;
  display: flex; flex-direction: column; gap: 7px;
}

.wish-list li {
  font-size: 0.8rem; color: var(--grey-mid);
  padding-left: 15px; position: relative;
}
.wish-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--purple-light);
}
.wish-card--no .wish-list li::before { color: var(--grey-light); }


/* ============================================================
   SUBMISSIONS
============================================================ */
.submissions-section { background: var(--white); }

.sub-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: start;
}

.sub-steps { display: flex; flex-direction: column; }

.sub-info { display: flex; flex-direction: column; gap: 16px; }

.step { display: flex; gap: 28px; padding-bottom: 44px; position: relative; }

.step:not(:last-child)::after {
  content: ''; position: absolute;
  left: 20px; top: 48px; bottom: 0;
  width: 1px; background: var(--grey-light);
}

.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--grey-pale); color: var(--purple);
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.04em; border: 1px solid var(--grey-light);
}

.step-body { padding-top: 8px; }
.step-body h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; color: var(--black); margin-bottom: 9px;
}
.step-body p { font-size: 0.9375rem; }

.sub-aside { display: flex; flex-direction: column; gap: 16px; }

.aside-box {
  background: var(--paper); border-radius: 2px;
  padding: 24px; border: 1px solid var(--grey-light);
}

.aside-box h4 {
  font-family: var(--font-display); font-size: 0.98rem;
  font-weight: 600; color: var(--black); margin-bottom: 14px;
}

.checklist { display: flex; flex-direction: column; gap: 9px; }
.checklist li {
  font-size: 0.845rem; color: var(--grey-dark);
  padding-left: 20px; position: relative;
}
.checklist li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--purple); font-size: 0.72rem; top: 2px;
}

.aside-box--dark { background: var(--black); border-color: var(--black); }
.aside-box--dark h4 {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 12px;
}

.aside-box--dark blockquote {
  font-family: var(--font-display); font-style: italic;
  color: rgba(255,255,255,0.82); font-size: 0.92rem;
  line-height: 1.75; margin-bottom: 10px;
  border: none; padding: 0;
}

.aside-attr { font-size: 0.8rem; color: var(--purple-light); letter-spacing: 0.05em; }

.aside-email {
  font-family: var(--font-display); font-size: 0.92rem;
  font-weight: 600; color: var(--purple); margin-bottom: 8px;
  word-break: break-all;
}

.aside-note { font-size: 0.8rem; color: var(--grey-mid); line-height: 1.55; margin-bottom: 0; }


/* ============================================================
   CONTACT
============================================================ */
.contact-section { background: var(--paper); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 260px; gap: 80px; align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-field { display: flex; flex-direction: column; gap: 7px; }

.form-field label {
  font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--grey-dark); font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 11px 15px;
  border: 1px solid var(--grey-light); border-radius: 2px;
  font-family: var(--font-body); font-size: 0.9375rem;
  color: var(--black); background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none; -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(153, 51, 255, 0.1);
}

.form-field textarea { resize: vertical; min-height: 136px; }

.form-note {
  font-size: 0.8rem; color: var(--grey-mid); line-height: 1.55;
  padding: 11px 15px;
  background: var(--grey-pale);
  border-left: 2px solid var(--purple);
  border-radius: 0 2px 2px 0;
}
.form-note a { color: var(--purple); text-decoration: underline; }

.form-success {
  display: none; padding: 14px 16px;
  background: rgba(153, 51, 255, 0.06);
  border: 1px solid rgba(153, 51, 255, 0.2);
  border-radius: 2px; color: var(--purple);
  font-size: 0.9rem;
}
.form-success.visible { display: block; }

.contact-aside { padding-top: 4px; }

.contact-info-block {
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-light);
}

.contact-agency-name {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 700; color: var(--black);
  letter-spacing: 0.12em; margin-bottom: 3px;
}

.contact-agency-full { font-size: 0.875rem; color: var(--grey-mid); margin-bottom: 10px; }
.contact-email {
  font-size: 0.82rem; color: var(--purple); margin-bottom: 0;
  word-break: break-all;
}

.contact-social-block { margin-bottom: 24px; }

.social-head {
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--grey-mid); margin-bottom: 10px;
}

.social-link {
  display: block; font-size: 0.875rem; color: var(--grey-dark);
  margin-bottom: 7px; transition: color var(--ease);
}
.social-link:hover { color: var(--purple); }

.contact-logo-deco { margin-top: 28px; }


/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--black);
  padding: 56px 0 36px; position: relative; overflow: hidden;
}

.footer-blots { position: absolute; inset: 0; pointer-events: none; }

.footer-blot {
  position: absolute; background: var(--black-soft);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.8;
}

.fb-1 { width: 220px; height: 190px; top: -65px; right: 8%; }
.fb-2 { width: 160px; height: 140px; bottom: -45px; left: 4%; border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%; }
.fb-3 { width: 100px; height: 85px; top: 30%; left: 30%; opacity: 0.4; border-radius: 50% 50% 60% 40% / 50% 50% 40% 60%; }

.footer-top {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex; align-items: center; gap: 12px; color: var(--white);
}

.footer-aka {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--white); line-height: 1;
}

.footer-full {
  font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--purple-light); opacity: 0.75; margin-top: 2px;
}

.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }

.footer-nav a {
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); transition: color var(--ease);
}
.footer-nav a:hover { color: var(--purple-light); }

.footer-bottom {
  position: relative; z-index: 1;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.76rem; color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em; margin-bottom: 0;
}

.footer-desc {
  font-size: 0.82rem !important; color: rgba(255,255,255,0.38) !important;
  max-width: 560px; margin: 0 auto 14px !important;
  line-height: 1.7; letter-spacing: 0 !important;
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  :root { --section-v: 80px; }

  .about-grid { grid-template-columns: 260px 1fr; gap: 56px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
  .what-we-do-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .sub-layout { grid-template-columns: 1fr; gap: 48px; }
  .sub-info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-aside { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .contact-logo-deco { display: none; }
}

@media (max-width: 768px) {
  :root { --section-v: 64px; }

  .nav-inner { padding: 0 24px; }

  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 260px;
    background: var(--black);
    flex-direction: column; justify-content: center; gap: 30px;
    transition: right var(--ease-slow); z-index: 1000;
    padding: 0 40px;
  }
  .nav-links.open { right: 0; }
  .nav-links li a { font-size: 0.88rem; }
  .nav-toggle { display: flex; }

  .container { padding: 0 24px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { max-width: 240px; margin: 0 auto; }

  .projects-grid,
  .wishlist-grid,
  .what-we-do-grid { grid-template-columns: 1fr; }

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

  .sub-steps { grid-template-columns: 1fr; }
  .sub-info { grid-template-columns: 1fr; }
  .contact-aside { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; align-items: center; }

  .footer-top { flex-direction: column; }
  .footer-nav { gap: 18px; }

  .logo-full { display: none; }
}
