/* ============================================================
   PORTFOLIO — style.css
   CONFIG: Edit :root variables to customize colors & fonts
============================================================ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Core palette */
  --green:    #2C4A3E;
  --cream:    #F5EDD6;
  --orange:   #E8732A;
  --mauve:    #BAA1AD;
  --olive:    #A9AC83;
  --purple:   #948BAA;

  --ink:      #1A1A18;
  --ink-muted:#5C5248;
  --border:   rgba(44,74,62,.14);

  /* Semantic aliases */
  --bg:       var(--cream);
  --surface:  #EDE5CC;

  /* Fonts — drop woff2 files into /fonts/ to activate */
  --font-title: 'AvauntStencil', 'Playfair Display', Georgia, serif;
  --font-body:  'LumiosTypewriter', 'DM Sans', sans-serif;

  /* Radii */
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;
  --r-pill:999px;

  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ── CUSTOM FONTS ────────────────────────────────────────── */
@font-face {
  font-family: 'AvauntStencil';
  src: url('../fonts/AvauntStencil.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'LumiosTypewriter';
  src: url('../fonts/LumiosTypewriter.woff2') format('woff2');
  font-display: swap;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
ul { list-style: none; }

/* ── NOISE OVERLAY ───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  z-index: 9998;
}

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .18s var(--ease), height .18s var(--ease), background .18s;
  mix-blend-mode: multiply;
}
.cursor.grow { width: 36px; height: 36px; background: var(--purple); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green);
  padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  overflow: visible;
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: .02em;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,237,214,.65); transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--cream) !important;
  padding: 8px 22px; border-radius: var(--r-pill);
  font-size: .76rem !important; letter-spacing: .09em; font-weight: 500;
  transition: background .2s, transform .18s !important;
}
.nav-cta:hover { background: #d4621e !important; transform: scale(1.04) !important; }

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border-radius: 8px;
  transition: background .2s;
  z-index: 102; position: relative;
}
.hamburger:hover { background: rgba(245,237,214,.1); }
.hamburger span {
  width: 22px; height: 2px; background: var(--cream);
  border-radius: 2px; display: block;
  transition: all .28s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE DROPDOWN ─────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 72px; right: 16px;
  width: min(240px, calc(100vw - 32px));
  background: var(--green);
  border: 1px solid rgba(245,237,214,.15);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
  z-index: 200;
  display: flex; flex-direction: column;
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(.96);
  transform-origin: top right;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear .2s;
}
.mobile-menu.open {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear 0s;
}
.mobile-menu a {
  display: flex; align-items: center; padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(245,237,214,.7); transition: background .15s, color .15s;
}
.mobile-menu a:hover { background: rgba(245,237,214,.08); color: var(--cream); }
.mobile-menu .mob-divider { height: 1px; background: rgba(245,237,214,.12); margin: 4px 8px; }
.mobile-menu .mob-cta {
  background: var(--orange); color: var(--cream) !important;
  justify-content: center; margin-top: 2px; border-radius: var(--r-md);
}
.mobile-menu .mob-cta:hover { background: #d4621e !important; }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  background: var(--green);
  min-height: 100svh; padding: 64px 0 0;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-shape-1 {
  position: absolute; top: -40px; right: -60px;
  width: 440px; height: 440px;
  background: var(--orange); border-radius: 50%; opacity: .18;
}
.hero-shape-2 {
  position: absolute; bottom: 60px; left: -80px;
  width: 300px; height: 300px;
  background: var(--olive); border-radius: 50%; opacity: .2;
}
.hero-inner {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; max-width: 1160px; width: 100%;
  margin: 0 auto; padding: 80px 32px 0;
  position: relative; z-index: 2; gap: 0;
}
.hero-text { padding-bottom: 72px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,237,214,.12); border: 1px solid rgba(245,237,214,.2);
  color: rgba(245,237,214,.8);
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--r-pill); margin-bottom: 28px;
}
.hero-tag::before { content: "✦"; color: var(--orange); }
h1.hero-name {
  font-family: var(--font-title);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: .92; letter-spacing: -.02em; color: var(--cream); margin-bottom: 32px;
}
h1.hero-name .outline { -webkit-text-stroke: 2px var(--orange); color: transparent; }
h1.hero-name .accent  { color: var(--orange); }
.hero-bio {
  font-size: .95rem; line-height: 1.8;
  color: rgba(245,237,214,.65); max-width: 400px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-pill);
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-primary     { background: var(--orange); color: var(--cream); }
.btn-primary:hover { background: #d4621e; }
.btn-outline     { border: 1.5px solid rgba(245,237,214,.3); background: transparent; color: var(--cream); }
.btn-outline:hover { background: rgba(245,237,214,.1); border-color: rgba(245,237,214,.6); }
.btn-dark        { border: 1.5px solid var(--border); background: transparent; color: var(--ink); }
.btn-dark:hover  { background: var(--surface); }
.btn-dark-fill   { background: var(--green); color: var(--cream); }
.btn-dark-fill:hover { background: #1d3329; }

/* ── HERO VISUAL ─────────────────────────────────────────── */
.hero-visual {
  position: relative; align-self: flex-end;
  height: 580px; display: flex; align-items: flex-end; justify-content: center;
}
.hero-visual::before {
  content: '';
  position: absolute; bottom: 0; right: 24px;
  width: 74%; height: 88%;
  background: var(--orange); border-radius: var(--r-xl) var(--r-xl) 0 0; z-index: 0;
}
.hero-visual::after {
  content: '';
  position: absolute; bottom: 0; left: 24px;
  width: 60%; height: 68%;
  background: var(--mauve); border-radius: var(--r-xl) var(--r-xl) 0 0; z-index: 0; opacity: .6;
}
.hero-img-card {
  position: relative; z-index: 1;
  width: 76%; height: 95%;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden; background: var(--surface);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-card .placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--mauve) 0%, var(--purple) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  font-family: var(--font-title); font-size: .95rem;
  color: rgba(245,237,214,.7); letter-spacing: .1em;
}
.hero-stats {
  position: absolute; left: 0; bottom: 40px;
  display: flex; flex-direction: column; gap: 10px; z-index: 3;
}
.stat-pill {
  background: var(--cream); border-radius: var(--r-md);
  padding: 10px 18px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.stat-pill strong { font-family: var(--font-title); font-size: 1.5rem; line-height: 1; color: var(--green); }
.stat-pill span   { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden; background: var(--cream);
  border-top: 2px solid var(--green); border-bottom: 2px solid var(--green);
  padding: 13px 0;
}
.marquee-track {
  display: flex; gap: 56px;
  animation: marquee 20s linear infinite; width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-title); font-size: .9rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--green); white-space: nowrap;
}
.marquee-star { color: var(--orange); font-size: .7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ───────────────────────────────────────────────── */
#about { background: var(--cream); padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: '';
  position: absolute; top: -20px; left: -20px;
  width: 80%; height: 80%;
  background: var(--green); border-radius: var(--r-xl); z-index: 0;
}
.about-img-wrap::after {
  content: '';
  position: absolute; bottom: -16px; right: -16px;
  width: 50%; height: 50%;
  background: var(--orange); border-radius: var(--r-lg); z-index: 0; opacity: .7;
}
.about-img {
  position: relative; z-index: 1;
  border-radius: var(--r-xl); aspect-ratio: 1/1.25;
  overflow: hidden; background: var(--mauve);
  box-shadow: 0 20px 60px rgba(44,74,62,.2);
}
.about-img .placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(140deg, var(--mauve) 0%, var(--purple) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.about-badge {
  position: absolute; bottom: 32px; right: -24px; z-index: 2;
  background: var(--olive); border-radius: var(--r-md);
  padding: 16px 20px; font-family: var(--font-title);
  font-size: .82rem; letter-spacing: .05em; line-height: 1.5;
  color: var(--ink); max-width: 150px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.section-label {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px; font-weight: 500;
}
h2.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05; margin-bottom: 28px;
}
h2.section-title em      { font-style: italic; color: var(--green); }
h2.section-title .outline { -webkit-text-stroke: 2px var(--green); color: transparent; font-style: normal; }
.about-body { font-size: .95rem; color: var(--ink-muted); line-height: 1.85; margin-bottom: 32px; }
.skills-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.skill-tag {
  padding: 7px 18px; border-radius: var(--r-pill);
  background: transparent; border: 1.5px solid var(--green);
  font-size: .76rem; letter-spacing: .06em; color: var(--green);
  transition: background .2s, color .2s, transform .15s;
}
.skill-tag:hover { background: var(--green); color: var(--cream); transform: translateY(-2px); }

/* ── WORK ────────────────────────────────────────────────── */
#work { background: var(--surface); }
.work-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 24px; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.project-card {
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  background: var(--cream); border: 1.5px solid rgba(44,74,62,.1);
  transition: transform .35s var(--ease), box-shadow .35s; cursor: pointer;
}
.project-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 60px rgba(44,74,62,.14); }
.card-1 { grid-column: span 7; min-height: 480px; }
.card-2 { grid-column: span 5; min-height: 480px; }
.card-3 { grid-column: span 5; min-height: 360px; }
.card-4 { grid-column: span 4; min-height: 360px; }
.card-5 { grid-column: span 3; min-height: 360px; }
.card-img {
  width: 100%; height: 58%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; transition: transform .4s var(--ease); overflow: hidden; position: relative;
}
.card-img::after {
  content: '';
  position: absolute; bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,.15); border-radius: 50%;
}
.project-card:hover .card-img { transform: scale(1.04); }
.card-1 .card-img { background: var(--green); }
.card-2 .card-img { background: var(--mauve); }
.card-3 .card-img { background: var(--olive); }
.card-4 .card-img { background: var(--purple); }
.card-5 .card-img { background: var(--orange); }
.card-body { padding: 24px; }
.card-cat  { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.card-title { font-family: var(--font-title); font-size: 1.3rem; margin-bottom: 8px; line-height: 1.2; color: var(--ink); }
.card-desc  { font-size: .8rem; color: var(--ink-muted); line-height: 1.65; }
.card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--cream);
  transition: background .2s, transform .2s, color .2s;
}
.project-card:hover .card-arrow { background: var(--orange); transform: rotate(45deg); }

/* ── GALLERY ─────────────────────────────────────────────── */
#gallery { background: var(--cream); overflow: hidden; }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.gallery-scroll-track {
  display: flex; gap: 20px; overflow-x: auto;
  padding-bottom: 20px; scrollbar-width: none; cursor: grab;
}
.gallery-scroll-track:active { cursor: grabbing; }
.gallery-scroll-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex-shrink: 0; border-radius: var(--r-xl);
  overflow: hidden; position: relative; transition: transform .3s var(--ease);
}
.gallery-item:hover { transform: scale(1.02) rotate(-.5deg); }
.gi-tall { width: 280px; height: 400px; }
.gi-wide { width: 420px; height: 280px; align-self: flex-end; }
.gi-sq   { width: 300px; height: 300px; }
.gallery-item .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; font-size: 2.5rem;
}
.gi-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(245,237,214,.9); backdrop-filter: blur(8px);
  border-radius: var(--r-pill); padding: 5px 14px;
  font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink);
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact { background: var(--green); padding: 100px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-big {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95; margin-bottom: 28px; color: var(--cream);
}
.contact-big em { font-style: italic; color: var(--orange); }
.contact-desc   { color: rgba(245,237,214,.6); font-size: .95rem; line-height: 1.8; margin-bottom: 36px; }
.contact-links  { display: flex; flex-direction: column; gap: 14px; }
.contact-link   {
  display: flex; align-items: center; gap: 14px;
  font-size: .86rem; letter-spacing: .04em; color: rgba(245,237,214,.6);
  transition: color .2s, gap .2s;
}
.contact-link:hover { color: var(--cream); gap: 20px; }
.contact-link-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(245,237,214,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0; color: var(--cream);
  transition: background .2s, border-color .2s;
}
.contact-link:hover .contact-link-icon { background: var(--orange); border-color: var(--orange); }
.contact-form {
  background: var(--cream); border-radius: var(--r-xl);
  padding: 40px; display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.form-group   { display: flex; flex-direction: column; gap: 8px; }
.form-label   { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }
.form-input,
.form-textarea {
  background: var(--surface); border: 1.5px solid transparent;
  border-radius: var(--r-md); padding: 13px 18px;
  font-family: var(--font-body); font-size: .9rem; color: var(--ink);
  outline: none; transition: border-color .2s; resize: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--green); }
.form-textarea { height: 130px; }
.form-submit {
  background: var(--orange); color: var(--cream); border: none;
  border-radius: var(--r-pill); padding: 15px 32px;
  font-family: var(--font-body); font-size: .82rem; letter-spacing: .09em;
  text-transform: uppercase; cursor: pointer; font-weight: 500;
  transition: background .2s, transform .2s var(--ease); align-self: flex-start;
}
.form-submit:hover { background: #d4621e; transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #1d3329; color: var(--cream);
  padding: 44px 36px 32px; border-top: 2px solid var(--orange);
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo    { font-family: var(--font-title); font-size: 1.5rem; color: var(--cream); }
.footer-copy    { font-size: .76rem; color: rgba(245,237,214,.35); }
.footer-socials { display: flex; gap: 10px; }
.footer-soc {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(245,237,214,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: rgba(245,237,214,.55);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-soc:hover { border-color: var(--orange); background: var(--orange); color: var(--cream); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet (640–1023px) */
@media (max-width: 1023px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { padding: 60px 24px 0; gap: 16px; }
  h1.hero-name { font-size: clamp(3.2rem, 8vw, 6rem); }
  .hero-visual { height: 440px; }
  .hero-text   { padding-bottom: 56px; }

  .about-grid { gap: 48px; }
  .about-badge { right: -8px; }

  .work-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .card-1 { grid-column: span 6; min-height: 360px; }
  .card-2, .card-3 { grid-column: span 3; min-height: 300px; }
  .card-4, .card-5 { grid-column: span 3; min-height: 280px; }

  section { padding: 72px 0; }
  .container { padding: 0 24px; }
  body { cursor: auto; }
  .cursor { display: none; }
}

/* Mobile (< 640px) */
@media (max-width: 639px) {
  nav { padding: 0 18px; }

  .hero-inner { grid-template-columns: 1fr; padding: 48px 20px 0; }
  .hero-visual { display: none; }
  h1.hero-name { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-text   { padding-bottom: 56px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-wrap { max-width: 280px; }
  .about-badge { right: -8px; bottom: 20px; }

  .work-grid { grid-template-columns: 1fr; gap: 14px; }
  .card-1, .card-2, .card-3, .card-4, .card-5 { grid-column: span 1; min-height: 300px; }
  .work-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .contact-form  { padding: 24px 20px; }
  .contact-big   { font-size: clamp(2.4rem, 11vw, 4rem); }

  section { padding: 56px 0; }
  .container { padding: 0 20px; }

  .gi-tall { width: 220px; height: 320px; }
  .gi-wide { width: 300px; height: 220px; }
  .gi-sq   { width: 240px; height: 240px; }

  footer { padding: 36px 20px 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
