﻿/* ============================================================
   PEDROPK — Freelance Web Developer Portfolio
   Base reset + global rules
   ============================================================ */
:root {
  --green: #33402A;
  --cream: #F2E8D5;
  --gold:  #D89A3B;
  --white: #FAF7F2;
  --red:   #C1502A;
  --olive: #4B5C2E;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--green);
  overflow-x: hidden;
}
/* Subtle full-page grain texture (SVG noise filter, URL-encoded — no base64) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 9999;
}
/* ============================================================
   Animations
   ============================================================ */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes float-star {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  40% {
    transform: translateY(-14px) rotate(20deg) scale(1.15);
  }
  70% {
    transform: translateY(-6px) rotate(-8deg) scale(0.9);
  }
}
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(75,92,46,0.5);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 5px rgba(75,92,46,0);
  }
}
/* ============================================================
   Shared utilities (reused across multiple sections)
   ============================================================ */
/* Floating/decorative ✦ marks — position, size, color, timing all per-instance */
.sparkle {
  position: absolute;
  top: var(--top, auto);
  left: var(--left, auto);
  right: var(--right, auto);
  bottom: var(--bottom, auto);
  font-size: var(--fs, 20px);
  color: var(--c, var(--gold));
  pointer-events: none;
  user-select: none;
  animation: float-star var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
}
/* Outlined "hollow" text (stroke only, transparent fill) */
.text-outline {
  color: transparent;
  -webkit-text-stroke: var(--stroke-w, 2px) var(--stroke-c, var(--green));
}
/* Small uppercase numbered kicker label used above each section heading */
.section-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c, var(--green));
  margin-bottom: var(--mb, 18px);
}
/* ============================================================
   Mobile menu (full-screen overlay)
   ============================================================ */
.mm {
  position: fixed;
  inset: 0;
  background: var(--green);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
}
.mm.open {
  transform: translateX(0);
}
.mm a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 4px;
  line-height: 1.1;
  transition: color 0.2s;
}
.mm a:hover {
  color: var(--gold);
}
.mm-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
/* Burger button (hidden on desktop) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 999;
}
.burger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
  background: var(--cream);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
  background: var(--cream);
}
/* Checkerboard section divider */
.ck {
  height: 28px;
  background: repeating-conic-gradient(var(--olive) 0% 25%, var(--gold) 0% 50%) 0 0 / 28px 28px;
}
/* ============================================================
   Fixed header + nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2.5px solid var(--green);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--green);
  text-decoration: none;
  line-height: 1;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}
.nav-spacer {
  height: 72px;
}
.d-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
/* Desktop nav link */
.nl {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nl:hover, .nl.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
/* Language toggle button — matches .nl visually */
.lang-toggle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  cursor: pointer;
  transition: color 0.2s, border-bottom-color 0.2s;
  line-height: 1;
  margin-left: 105px;
}
.lang-toggle:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
/* Polaroid-style hover lift (available for use on cards/images) */
.polar {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  cursor: default;
}
.polar:hover {
  transform: rotate(0deg) scale(1.04) !important;
  box-shadow: 10px 16px 50px rgba(0,0,0,0.5) !important;
  position: relative;
  z-index: 10;
}
/* Pill-shaped button (color set per-instance via --pill-bg/--pill-fg/--pill-bd) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 3px solid;
  background: var(--pill-bg, transparent);
  color: var(--pill-fg, var(--green));
  border-color: var(--pill-bd, var(--green));
}
.pill:hover {
  transform: translateY(-2px);
}
/* Small rounded tag */
.tag {
  font-size: 11px;
  padding: 3px 10px;
  border: 1.5px solid var(--green);
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green);
}
/* ============================================================
   Hero
   ============================================================ */
.hero-sec {
  background: var(--cream);
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 48px 96px;
  position: relative;
  overflow: hidden;
  background-image: repeating-linear-gradient(-45deg,transparent,transparent 36px,rgba(201,64,48,0.045) 36px,rgba(201,64,48,0.045) 38px);
}
.avail-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--olive);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 44px;
}
.avail-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--olive);
  display: block;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
.avail-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow-line {
  width: 56px;
  height: 1px;
  background: var(--green);
  opacity: 0.3;
}
.eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.55;
}
.hero-display-wrap {
  line-height: 0.87;
  margin-bottom: 8px;
}
.hero-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(76px,11vw,172px);
  display: block;
  letter-spacing: 5px;
  color: var(--red);
  padding-bottom: 15px;
}
.hero-display.text-outline {
  color: transparent;
}
.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(16px,1.8vw,21px);
  color: var(--green);
  opacity: 0.65;
  max-width: 440px;
  line-height: 1.55;
  margin-top: 28px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.hero-tech-row {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  pointer-events: none;
}
.tech-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.35;
}
.tech-sep {
  color: var(--green);
  opacity: 0.2;
  font-size: 13px;
}
/* ============================================================
   Tech marquee (infinite scrolling strip)
   ============================================================ */
.tech-marquee {
  background: var(--olive);
  padding: 36px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  gap: 0;
  align-items: center;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  flex-shrink: 0;
}
.marquee-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 27px;
  letter-spacing: 3px;
  color: var(--white);
}
.marquee-sep {
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}
/* ============================================================
   Section-wide backgrounds (About / Projects / Contact all use .sect-wide)
   ============================================================ */
.sect-wide {
  padding: 100px 48px;
}
.about-section {
  background: var(--white);
}
.projects-section {
  background: var(--green);
}
.contact-section {
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.about-container, .projects-container, .contact-container {
  max-width: 1160px;
  margin: 0 auto;
}
.contact-container {
  max-width: 760px;
  text-align: center;
  position: relative;
}
/* ============================================================
   About
   ============================================================ */
.about-wrap {
  display: flex;
  gap: 72px;
  align-items: flex-start;
}
.about-left {
  flex: 1;
  min-width: 0;
}
.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px,6vw,96px);
  line-height: 0.88;
  color: var(--green);
  margin-bottom: 36px;
}
.about-story {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16.5px;
  line-height: 1.72;
  color: #3a473a;
  max-width: 540px;
}
.xp-badge {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border: 3px solid var(--green);
  border-radius: 14px;
  padding: 22px 32px;
  margin-top: 44px;
  background: var(--cream);
}
.xp-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--red);
  letter-spacing: -2px;
}
.xp-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--green);
  line-height: 1.2;
}
.about-right {
  width: 320px;
  flex-shrink: 0;
  margin-top: 8px;
}
.toolkit-card {
  border: 3px solid var(--green);
  border-radius: 14px;
  overflow: hidden;
}
.toolkit-header {
  background: var(--gold);
  padding: 18px 24px;
  text-align: center;
  border-bottom: 3px solid var(--green);
}
.toolkit-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.6;
  margin-bottom: 3px;
}
.toolkit-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 5px;
  color: var(--green);
  line-height: 1;
}
.toolkit-skills {
  background: var(--green);
  padding: 6px 0;
}
.skill-row {
  --dot-c: var(--green);
  --dot-c-faint: rgba(26,48,32,0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(240,235,224,0.1);
}
.skill-row:last-child {
  border-bottom: none;
}
.skill-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
}
.skill-dots {
  display: flex;
  gap: 5px;
}
.skill-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  background: var(--dot-c);
}
.skill-dot--faint {
  background: var(--dot-c-faint);
}
.toolkit-footer {
  background: var(--gold);
  padding: 12px;
  text-align: center;
  border-top: 3px solid var(--green);
}
.toolkit-footer-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--green);
  opacity: 0.8;
}
/* ============================================================
   Projects — card grid
   ============================================================ */
.projects-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.projects-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(52px,6vw,96px);
  line-height: 0.92;
  letter-spacing: 1px;
  color: #ede6d3;
  -webkit-text-stroke: 1.5px #0b160e;
}
.projects-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: #8f9682;
  padding-bottom: 10px;
}

/* Toggle */
.proj-toggle-wrap {
  margin-bottom: 40px;
}
.proj-toggle {
  display: inline-flex;
  background: #0e1911;
  border: 1px solid #3a4a30;
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
}
.proj-toggle-btn {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #8f9682;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.proj-toggle-btn.active {
  background: #c1442d;
  color: #ede6d3;
}

/* Websites pages wrapper */
.proj-grid {
  position: relative;
}

/* Each page of 4 cards */
.proj-page {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.proj-page.active {
  display: grid;
}
.proj-card {
  background: #0e1911;
  border: 2px solid #2a3a22;
  border-radius: 10px;
  position: relative;
}
.proj-card-tab {
  position: absolute;
  top: -2px;
  right: 22px;
  width: 36px;
  height: 16px;
  background: var(--accent);
  border-radius: 0 0 6px 6px;
}
.proj-card-inner {
  padding: 20px 22px 22px;
}
.proj-card-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
}
.proj-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a4a30;
  display: inline-block;
}
.proj-card-img {
  height: 260px;
  border-radius: 6px;
  margin-bottom: 16px;
  background: #0e1911;
  overflow: hidden;
}
.proj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  opacity: 0.9;
}
.proj-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px;
  color: #ede6d3;
  margin: 0 0 8px;
  letter-spacing: 1px;
}
.proj-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #9aa08c;
  margin: 0 0 16px;
}
.proj-card-desc a{
  color:inherit!important;
}
.proj-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.proj-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.5px;
  color: #c7cdb8;
  border: 1px solid #3a4a30;
  border-radius: 999px;
  padding: 4px 10px;
}
.proj-card-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 1px;
  background: transparent;
  border: 1px solid #ede6d3;
  color: #ede6d3;
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s, color 0.18s;
}
.proj-card-btn:hover {
  background: #ede6d3;
  color: #0e1911;
}

/* Pagination arrows */
.proj-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.proj-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #3a4a30;
  background: #0e1911;
  color: #ede6d3;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s, opacity 0.18s;
  line-height: 1;
}
.proj-arrow:hover:not(:disabled) {
  background: #c1442d;
  border-color: #c1442d;
}
.proj-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.proj-dots-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.proj-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a4a30;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.proj-nav-dot.active {
  background: #c1442d;
  transform: scale(1.3);
}

/* Illustrations 4-col grid */
.proj-illus-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.proj-illus-grid.active {
  display: grid;
}
.proj-illus-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--bg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.proj-illus-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 22px 22px 0;
  border-color: transparent #16241a transparent transparent;
  opacity: 0.9;
}
.proj-illus-mono {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: rgba(14,25,17,0.75);
}
.proj-illus-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14,25,17,0.82);
  padding: 8px 10px;
  font-family: 'Space Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 1px;
  color: #ede6d3;
}
/* Illustration tile — clickable & logo variants */
.proj-illus-tile {
  cursor: pointer;
}
.proj-illus-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.proj-illus-tile--logo {
  background: var(--bg);
}
.proj-illus-svg {
  width: 90%;
  height: auto;
  object-fit: contain;
  max-height: 75%;
}

/* Illustration modal */
.illus-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.illus-modal.open {
  display: flex;
}
.illus-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,25,17,0.75);
  backdrop-filter: blur(4px);
}
.illus-modal-box {
  position: relative;
  background: #f5f0e8;
  border-radius: 14px;
  max-width: 540px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
.illus-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(26,48,32,0.08);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 15px;
  cursor: pointer;
  color: #1A3020;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.illus-modal-close:hover { background: rgba(26,48,32,0.16); }
.illus-modal-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 36px 40px 24px;
  background: var(--modal-tile-bg, #e8e2d8);
}
.illus-modal-mono {
  font-family: 'Anton', sans-serif;
  font-size: 96px;
  color: rgba(14,25,17,0.18);
}
.illus-modal-img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: none;
}
.illus-modal-img.visible { display: block; }
.illus-modal-info {
  padding: 20px 28px 28px;
  border-top: 1.5px solid rgba(26,48,32,0.1);
}
.illus-modal-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #1A3020;
  margin-bottom: 8px;
}
.illus-modal-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(26,48,32,0.72);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px,8vw,124px);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.contact-copy {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px,1.8vw,20px);
  color: rgba(240,235,224,0.8);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 20px;
}
.contact-remote {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.55);
  margin-bottom: 44px;
}
.contact-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--green);
  padding: 56px 48px 36px;
}
.footer-container {
  max-width: 1160px;
  margin: 0 auto;
}
.foot-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand-name {
  /* font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 5px;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px; */
  display: inline-block;
  width: auto;
}
.footer-logo{
  display: block;
  width: auto;
  height: 150px;
  padding-bottom: 20px;
}
.footer-brand-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(240,235,224,0.45);
  max-width: 200px;
  line-height: 1.5;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.4);
  margin-bottom: 4px;
}
.foot-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(240,235,224,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(240,235,224,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom {
  border-top: 1px solid rgba(240,235,224,0.12);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: rgba(240,235,224,0.3);
  letter-spacing: 0.05em;
}
.footer-star {
  font-size: 18px;
  color: var(--gold);
  opacity: 0.6;
}
/* ============================================================
   Responsive (tablet/mobile)
   ============================================================ */
@media (max-width: 768px) {
  .proj-page{
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .burger {
    display: flex !important;
  }
  .d-nav {
    display: none !important;
  }
  .about-wrap {
    flex-direction: column !important;
  }
  .about-right {
    width: 100% !important;
  }
  .proj-grid {
    grid-template-columns: 1fr !important;
  }
  .proj-illus-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .polar {
    transform: none !important;
  }
  .hero-sec {
    padding: 48px 24px 80px !important;
    min-height: auto !important;
  }
  .hero-display {
    font-size: clamp(72px,18vw,120px) !important;
  }
  .sect-wide {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .proj-card-offset {
    margin-top: 0 !important;
  }
  .foot-flex {
    flex-direction: column !important;
    gap: 32px !important;
  }
  .proj-toggle-btn {
    padding: 8px 14px !important;
    font-size: 10px !important;
  }
}