/* ==========================================================================
   Angelo Kazantzas — Personal Brand Site
   Design tokens
   ========================================================================== */

:root {
  /* Color */
  --bg:           #0A0A0A;
  --bg-elev:     #111111;
  --bg-warm:     #15110D;
  --line:        rgba(245, 241, 234, 0.10);
  --line-strong: rgba(245, 241, 234, 0.22);
  --text:        #F5F1EA;
  --text-muted:  #8A8580;
  --text-dim:    #5A5651;
  --accent:      #C9A66B;
  --accent-soft: rgba(201, 166, 107, 0.18);

  /* Type */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 144px;

  /* Layout */
  --max:    1320px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ==========================================================================
   Typography
   ========================================================================== */

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

.h-display {
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 350;
}

.h-section {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.04;
  font-weight: 400;
}

.h-sub {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  font-weight: 400;
}

p { margin: 0; }
.lede {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--text);
  max-width: 56ch;
}
.body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 60ch;
}
.italic { font-style: italic; }

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(80px, 12vw, 160px) 0; }
.divider { height: 1px; background: var(--line); width: 100%; }

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 28px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}
.wordmark span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 180ms ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  overflow: hidden;
}
.hero-image {
  position: relative;
  background-color: #000;
  background-image: url('hero.jpeg');
  background-size: cover;
  background-position: center 22%;
}
.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 22%),
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, transparent 18%, transparent 70%, rgba(10,10,10,0.55) 100%);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--gutter) 100px clamp(40px, 7vw, 96px);
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.hero-headline {
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 350;
}
.hero-sub {
  color: var(--text-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  max-width: 46ch;
  margin-bottom: 48px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  transition: all 200ms ease;
  white-space: nowrap;
}
.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.btn-arrow::after {
  content: '→';
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform 200ms ease;
}
.btn:hover .btn-arrow::after,
.btn.btn-arrow:hover::after { transform: translateX(4px); }

/* Hero meta line */
.hero-meta {
  position: absolute;
  bottom: 36px;
  left: clamp(40px, 7vw, 96px);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ==========================================================================
   Positioning
   ========================================================================== */

.positioning {
  text-align: center;
  padding: clamp(120px, 18vw, 220px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.positioning .h-display {
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 350;
  line-height: 1.05;
}
.positioning em { color: var(--accent); font-style: italic; }
.positioning .signature {
  margin-top: 56px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   Bio / Authority
   ========================================================================== */

.bio { background: var(--bg); }
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.bio-label .eyebrow { margin-bottom: 12px; display: block; }
.bio-label-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 400;
}
.bio-content > * + * { margin-top: 24px; }

.stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 48px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.stat-num em { color: var(--accent); font-style: normal; }
.stat-label {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   What I do
   ========================================================================== */

.services { border-top: 1px solid var(--line); }
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.services-head .h-section { max-width: 16ch; }
.services-head .body { max-width: 38ch; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.service {
  padding: 48px 36px 48px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service:last-child { border-right: 0; padding-right: 0; }
.service:not(:first-child) { padding-left: 36px; }
.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-style: italic;
}
.service h3 {
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.15;
  font-weight: 400;
}
.service p { color: var(--text-muted); line-height: 1.65; }

/* ==========================================================================
   Why
   ========================================================================== */

.why {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.why-list li:last-child { border-bottom: 0; }
.why-list .num {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.why-list h4 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 8px;
}
.why-list p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ==========================================================================
   Recruitment
   ========================================================================== */

.recruit {
  border-top: 1px solid var(--line);
  text-align: center;
}
.recruit .container { max-width: 920px; }
.recruit .eyebrow { display: inline-block; margin-bottom: 32px; color: var(--accent); }
.recruit .h-section { font-size: clamp(34px, 4.4vw, 56px); }
.recruit .body {
  margin: 32px auto 48px;
  color: var(--text-muted);
  max-width: 56ch;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.cta-final {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: clamp(120px, 16vw, 200px) 0;
}
.cta-final .h-display {
  max-width: 16ch;
  margin: 0 auto 56px;
  font-size: clamp(48px, 7vw, 96px);
}
.cta-final em { color: var(--accent); font-style: italic; }
.cta-final-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-hero {
  padding: 200px 0 80px;
  border-bottom: 1px solid var(--line);
}
.contact-hero .h-display {
  font-size: clamp(54px, 8vw, 112px);
  max-width: 14ch;
  margin-bottom: 32px;
}
.contact-hero em { color: var(--accent); font-style: italic; }
.contact-hero .lede { color: var(--text-muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}
.contact-info > * + * { margin-top: 28px; }
.info-block .eyebrow { display: block; margin-bottom: 6px; }
.info-block a {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.2;
  border-bottom: 1px solid var(--line);
  transition: border-color 180ms ease, color 180ms ease;
}
.info-block a:hover { color: var(--accent); border-color: var(--accent); }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 0;
  outline: none;
  transition: border-color 200ms ease;
  resize: none;
}
.field input:focus,
.field textarea:focus { border-color: var(--accent); }
.field textarea { min-height: 140px; }
.form-actions { margin-top: 16px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer-mark {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 12px;
}
.footer-mark em { color: var(--accent); font-style: italic; }
.footer-tag {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 32ch;
  line-height: 1.55;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { font-size: 14px; line-height: 2; color: var(--text-muted); }
.footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { min-height: 520px; order: -1; }
  .hero-image::before {
    background:
      linear-gradient(180deg, transparent 30%, var(--bg) 100%);
  }
  .hero-copy { padding: 56px var(--gutter) 80px; }
  .hero-meta { position: static; padding: 32px var(--gutter) 0; }

  .bio-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .service {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 36px 0 !important;
  }
  .service:last-child { border-bottom: 0; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }

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

@media (max-width: 600px) {
  .nav { padding: 20px 0; }
  .nav-links { gap: 20px; }
  .nav-links a:first-child { display: none; } /* keep only Contact on mobile */
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
