/* =========================================================
   ashkonyasseri.com
   Minimal, single column, big type. Angus-style.
   ========================================================= */

:root {
  --bg: #ffffff;
  --ink: #111111;
  --ink-2: #2a2a2a;
  --mute: #6b6b6b;
  --rule: #e6e6e6;

  --content: 900px;
  --pad: clamp(20px, 5vw, 32px);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
}

a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); text-decoration-thickness: 2px; }

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

::selection { background: var(--ink); color: #fff; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  font-size: 15px;
  color: var(--ink-2);
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { text-decoration: underline; text-underline-offset: 4px; }

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

/* ============ PAGE WRAPPER ============ */
.page {
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(32px, 7vw, 64px) var(--pad) 0;
}

/* ============ HERO ============ */
.hero {
  padding: clamp(32px, 6vw, 64px) 0 clamp(64px, 10vw, 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}
@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 clamp(20px, 3vw, 28px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(36px, 5.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}

.hero-photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #eeecdf;
  justify-self: end;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 24px 48px -24px rgba(0,0,0,0.2);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .hero-photo {
    max-width: 200px;
    justify-self: start;
    margin-top: 12px;
  }
}

.hero-sub {
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 48ch;
  font-weight: 400;
}
.hero-sub em {
  font-style: normal;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(transparent 70%, rgba(255, 220, 0, 0.55) 70%);
  padding: 0 2px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--ink);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s, background .2s;
  cursor: pointer;
}
.hero-cta:hover {
  transform: translateY(-1px);
  background: #000;
  color: #fff;
  text-decoration: none;
}
.hero-cta span { transition: transform .25s var(--ease); display: inline-block; }
.hero-cta:hover span { transform: translateX(3px); }

/* ============ ABOUT ============ */
.about {
  padding: clamp(40px, 7vw, 72px) 0;
  border-top: 1px solid var(--rule);
}
.about-copy {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 28ch;
}
.about-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.about-copy a:hover { color: #000; text-decoration-thickness: 3px; }
.about-copy em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(transparent 70%, rgba(255, 220, 0, 0.55) 70%);
  padding: 0 2px;
}

/* ============ VENN ============ */
.venn {
  padding: clamp(40px, 7vw, 72px) 0 clamp(40px, 7vw, 72px);
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: center;
}
.venn-wrap {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 420 / 380;
}
.venn-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.venn-label {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.venn-label-top   { top: 2%;  left: 50%; transform: translateX(-50%); }
.venn-label-left  { bottom: 2%; left: 4%; }
.venn-label-right { bottom: 2%; right: 4%; }
.venn-center {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
}

/* ============ BLOCK ============ */
.block {
  padding: clamp(48px, 8vw, 80px) 0;
  border-top: 1px solid var(--rule);
}

.h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 36px;
  max-width: 22ch;
}

.block-label {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 22px;
  text-transform: none;
}

/* ============ BULLET LIST ============ */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 58ch;
}
.bullet-list li {
  position: relative;
  padding-left: 24px;
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}
.bullet-list strong {
  color: var(--ink);
  font-weight: 700;
}

/* ============ EXPERIENCE LIST ============ */
.xp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.xp-role {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.xp-meta {
  font-size: 14px;
  color: var(--mute);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============ CLIENTS ============ */
.client-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 24px);
}
@media (max-width: 560px) { .client-list { grid-template-columns: 1fr; } }

.client-list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
}
.client-logo {
  height: 44px;
  display: flex;
  align-items: center;
}
.client-logo img {
  max-height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.82;
  transition: filter .25s, opacity .25s;
}
.client-list li:hover .client-logo img {
  filter: none;
  opacity: 1;
}
.client-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.client-blurb {
  margin: 0;
  font-size: 11px;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

/* ============ CONTACT ============ */
.contact-lede {
  font-size: clamp(18px, 1.6vw, 21px);
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 52ch;
  line-height: 1.5;
}
.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.contact-email-btn {
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s;
}
.contact-email-btn:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ============ FOOTER ============ */
.foot {
  padding: clamp(56px, 9vw, 88px) 0 48px;
  border-top: 1px solid var(--rule);
  margin-top: clamp(24px, 4vw, 40px);
}
.foot-email {
  display: inline-block;
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  margin: 0 0 32px;
  line-height: 1.05;
  word-break: break-word;
}
.foot-email:hover { text-decoration-thickness: 3px; }

.social-row {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-size: 16px;
  font-weight: 500;
}
.social-row a { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.social-row a:hover { text-decoration-thickness: 2px; }

.copyright {
  font-size: 14px;
  color: var(--mute);
  margin: 0;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.001s !important;
    animation-duration: 0.001s !important;
  }
}
