/* ============================================================
   CATCREATIVA – style.css
   Mobile-first · Light design · Belanosima + Ysabeau
   ============================================================ */

/* ------------------------------------------------------------
   FONTS (local, no CDN)
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Belanosima';
  src: url('assets/fonts/Belanosima-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Belanosima';
  src: url('assets/fonts/Belanosima-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ysabeau';
  src: url('assets/fonts/Ysabeau-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ysabeau';
  src: url('assets/fonts/Ysabeau-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ------------------------------------------------------------
   TOKENS
   ------------------------------------------------------------ */
:root {
  --bg:        #FAFAF7;
  --bg-alt:    #F0EDE4;
  --black:     #111110;
  --white:     #FFFFFF;
  --orange:    #FF5500;
  --line:      #E2DDD5;
  --muted:     #6B6860;
  --ph:        #D4CFC4;

  --f-head:    'Belanosima', sans-serif;
  --f-body:    'Ysabeau', serif;

  --nav-h:     64px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:        0.22s;

  /* spacing scale */
  --s4:   4px;
  --s8:   8px;
  --s12: 12px;
  --s16: 16px;
  --s20: 20px;
  --s24: 24px;
  --s32: 32px;
  --s40: 40px;
  --s48: 48px;
  --s64: 64px;
  --s80: 80px;
}

/* ------------------------------------------------------------
   RESET
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;          /* base – never change this */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  color: var(--black);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }

/* make sure every interactive element is at least 44px tall on touch */
a, button { min-height: 44px; display: inline-flex; align-items: center; }
/* override for non-interactive inline elements */
p a, span { min-height: unset; display: unset; }

/* ------------------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity  0.6s var(--ease),
    transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* staggered grid children */
.reveal-group > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  0.55s var(--ease),
    transform 0.55s var(--ease);
}
.reveal-group.is-visible > *:nth-child(1)  { opacity:1; transform:none; transition-delay: 0s;    }
.reveal-group.is-visible > *:nth-child(2)  { opacity:1; transform:none; transition-delay:.08s;   }
.reveal-group.is-visible > *:nth-child(3)  { opacity:1; transform:none; transition-delay:.16s;   }
.reveal-group.is-visible > *:nth-child(4)  { opacity:1; transform:none; transition-delay:.24s;   }
.reveal-group.is-visible > *:nth-child(5)  { opacity:1; transform:none; transition-delay:.32s;   }
.reveal-group.is-visible > *:nth-child(6)  { opacity:1; transform:none; transition-delay:.40s;   }
.reveal-group.is-visible > *:nth-child(n+7){ opacity:1; transform:none; transition-delay:.48s;   }

/* ------------------------------------------------------------
   TYPE
   ------------------------------------------------------------ */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: unset; /* override touch rule */
}
.label__dash {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.headline {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
/* Mobile-first sizes, scale up at larger breakpoints */
.headline--hero { font-size: clamp(48px, 11vw, 96px); }
.headline--xl   { font-size: clamp(36px,  6vw, 64px); }
.headline--lg   { font-size: clamp(28px,  4vw, 48px); }
.headline--md   { font-size: clamp(22px,  3vw, 36px); }

.body-text {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.78;
  color: var(--muted);
}

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s24);
}

@media (min-width: 768px) { .container { padding: 0 var(--s32); } }
@media (min-width: 1280px){ .container { padding: 0 var(--s40); } }

/* Section vertical rhythm */
section { padding: var(--s64) 0; }
@media (min-width: 768px) { section { padding: var(--s80) 0; } }
@media (min-width: 1024px){ section { padding: 108px 0; } }

/* spacing helpers */
.mt-8  { margin-top: var(--s8);  }
.mt-12 { margin-top: var(--s12); }
.mt-16 { margin-top: var(--s16); }
.mt-20 { margin-top: var(--s20); }
.mt-24 { margin-top: var(--s24); }
.mt-32 { margin-top: var(--s32); }
.mt-40 { margin-top: var(--s40); }
.mt-48 { margin-top: var(--s48); }

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0 var(--s24);
  height: 48px;         /* explicit height, always ≥44px */
  border: 2px solid transparent;
  border-radius: 2px;
  white-space: nowrap;
  transition:
    background var(--dur) var(--ease),
    color      var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform  var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); min-height: unset; }

.btn--black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--black:hover { background: var(--orange); border-color: var(--orange); }

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover { background: var(--black); color: var(--white); }

.link-cta {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  transition: gap var(--dur) var(--ease);
  min-height: 44px;
}
.link-cta:hover { gap: var(--s16); }

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s24);
  gap: var(--s24);
}
@media (min-width: 768px) { .nav__inner { padding: 0 var(--s32); } }

.nav__logo { flex-shrink: 0; min-height: unset; }
.nav__logo img { height: 34px; width: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: var(--s32);
}
@media (min-width: 900px) { .nav__links { display: flex; } }

.nav__links a {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 3px;
  min-height: unset;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--dur) var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta {
  display: none;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  height: 40px;
  padding: 0 var(--s20);
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 2px;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
  min-height: unset;
}
.nav__cta:hover { background: var(--orange); border-color: var(--orange); }
@media (min-width: 900px) { .nav__cta { display: inline-flex; align-items: center; } }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 44px;         /* touch target */
  padding: 13px 0;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: transform var(--dur), opacity var(--dur);
  border-radius: 1px;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 900px) { .nav__hamburger { display: none; } }

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s32);
}
.nav__overlay.is-open { display: flex; }
.nav__overlay a {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(32px, 8vw, 48px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--dur);
  min-height: unset;
}
.nav__overlay a:hover { color: var(--orange); }

/* ------------------------------------------------------------
   HERO — split layout (mobile: stacked)
   ------------------------------------------------------------ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

/* ---- Mobile: text first, then image ---- */
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s48) var(--s24) var(--s40);
  order: 1;
}

.hero__right {
  order: 2;
  position: relative;
  width: 100%;
  height: 56vw;
  min-height: 260px;
  max-height: 480px;
  background: var(--bg-alt);
  overflow: hidden;
}

/* ---- Tablet/Desktop: side by side ---- */
@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    min-height: 100svh;
  }
  .hero__left {
    order: 1;
    flex: 0 0 52%;
    max-width: 52%;
    padding: var(--s80) var(--s48) var(--s80) var(--s40);
    /* align left edge with container */
    padding-left: max(var(--s32), calc((100vw - 1200px) / 2 + var(--s40)));
  }
  .hero__right {
    order: 2;
    flex: 1;
    height: auto;
    max-height: none;
  }
}

@media (min-width: 1200px) {
  .hero__left { flex: 0 0 54%; max-width: 54%; }
}

/* Hero text */
.hero__title {
  margin-top: var(--s16);
  margin-bottom: var(--s20);
  line-height: 0.95;
}
.hero__title-line { display: block; }
.hero__title-line--outline {
  -webkit-text-stroke: 2.5px var(--black);
  color: transparent;
}
@media (min-width: 900px) {
  .hero__title-line--outline { -webkit-text-stroke: 3px var(--black); }
}

.hero__sub {
  font-family: var(--f-body);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.68;
  color: var(--muted);
  margin-bottom: var(--s28, 28px);
  max-width: 480px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s8);
  margin-bottom: var(--s32);
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-head);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 13px;
  border-radius: 2px;
  min-height: unset;
}
.hero__tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero__ctas {
  display: flex;
  gap: var(--s12);
  flex-wrap: wrap;
}

/* Hero video / placeholder */
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video-placeholder {
  width: 100%; height: 100%;
  background: var(--ph);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__video-placeholder-label {
  font-family: var(--f-head);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.28);
  line-height: 2;
}
.hero__video-placeholder-label small { font-size: 9px; }

/* ------------------------------------------------------------
   MARQUEE
   ------------------------------------------------------------ */
.marquee {
  background: var(--black);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}
.marquee__track {
  display: inline-flex;
  animation: marquee-run 30s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__text {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__sep {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 18px;
  flex-shrink: 0;
  vertical-align: middle;
}

@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   SECTION HEADER (shared)
   ------------------------------------------------------------ */
.section-header { margin-bottom: var(--s48); }
@media (min-width: 768px) { .section-header { margin-bottom: var(--s64); } }

/* ------------------------------------------------------------
   ART
   ------------------------------------------------------------ */
.art { background: var(--bg); }

/* Masonry — 1 col mobile, 2 tablet, 3 desktop */
.art-grid {
  columns: 1;
  column-gap: 12px;
  margin-bottom: var(--s40);
}
@media (min-width: 520px)  { .art-grid { columns: 2; } }
@media (min-width: 900px)  { .art-grid { columns: 3; } }

.art-grid__item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  background: var(--ph);
}

/* varying heights */
.art-grid__item:nth-child(3n+1) .art-grid__ph { aspect-ratio: 4/5; }
.art-grid__item:nth-child(3n+2) .art-grid__ph { aspect-ratio: 3/4; }
.art-grid__item:nth-child(3n)   .art-grid__ph { aspect-ratio: 1/1; }
.art-grid__item:nth-child(4)    .art-grid__ph { aspect-ratio: 3/4; }
.art-grid__item:nth-child(7)    .art-grid__ph { aspect-ratio: 4/3; }

.art-grid__ph {
  display: block;
  width: 100%;
  background: var(--ph);
  transition: transform 0.4s var(--ease);
}
.art-grid__item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.4s var(--ease);
}
.art-grid__item:hover .art-grid__ph,
.art-grid__item:hover img { transform: scale(1.04); }

.art-grid__caption {
  position: absolute;
  inset: 0;
  background: rgba(17,17,16,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--s20);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.art-grid__item:hover .art-grid__caption { opacity: 1; }

.art-grid__title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-align: center;
  margin-bottom: 4px;
}
.art-grid__medium {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* art footer: footnote + CTA side by side on larger screens */
.art__footer {
  display: flex;
  flex-direction: column;
  gap: var(--s20);
  border-top: 1px solid var(--line);
  padding-top: var(--s32);
}
@media (min-width: 768px) {
  .art__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.art__footnote {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}

/* ------------------------------------------------------------
   DESIGN
   ------------------------------------------------------------ */
.design {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Grid: 1 col mobile → 2 tablet → 3 desktop */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--black);
  margin-bottom: var(--s64);
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: var(--s32) var(--s24);
  border-bottom: 1px solid var(--black);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease);
}
@media (min-width: 768px) { .service-card { padding: var(--s40) var(--s32); } }

/* orange top bar on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg); }

/* right borders for grid layout */
@media (min-width: 600px) {
  .service-card          { border-right: 1px solid var(--black); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (min-width: 900px) {
  .service-card              { border-right: 1px solid var(--black); border-bottom: 1px solid var(--black); }
  .service-card:nth-child(2n){ border-right: 1px solid var(--black); }
  .service-card:nth-child(3n){ border-right: none; }
  .service-card:nth-last-child(-n+3) { border-bottom: none; }
}
/* last card always no bottom border */
.service-card:last-child { border-bottom: none; }

.service-card__num {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: rgba(17,17,16,0.06);
  letter-spacing: -0.02em;
  margin-bottom: var(--s12);
}
.service-card__title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  margin-bottom: var(--s8);
  line-height: 1.3;
}
.service-card__desc {
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* Portfolio */
.portfolio-header { margin-bottom: var(--s20); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: var(--s64);
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-grid__item { overflow: hidden; background: var(--ph); }
.portfolio-grid__ph {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--ph);
  transition: transform 0.4s var(--ease);
}
.portfolio-grid__item:hover .portfolio-grid__ph { transform: scale(1.04); }
.portfolio-grid__item img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.portfolio-grid__item:hover img { transform: scale(1.04); }

/* Quote + CTA */
.design__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s32);
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: var(--s48);
}

.design__quote {
  font-family: var(--f-body);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   ABOUT
   ------------------------------------------------------------ */
.about { background: var(--bg); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s40);
}
@media (min-width: 768px) {
  .about__inner {
    grid-template-columns: 320px 1fr;
    gap: var(--s64);
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .about__inner {
    grid-template-columns: 400px 1fr;
    gap: var(--s80);
  }
}

.about__photo-wrap {
  width: 100%;
  max-width: 380px;        /* cap on mobile */
}
@media (min-width: 768px) {
  .about__photo-wrap {
    position: sticky;
    top: calc(var(--nav-h) + 32px);
    max-width: none;
  }
}

.about__photo-ph {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--ph);
}
.about__photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.about__divider {
  width: 36px;
  height: 2px;
  background: var(--orange);
  margin: var(--s32) 0;
}

.about__text .body-text + .body-text { margin-top: var(--s20); }

/* ------------------------------------------------------------
   CONTACT — two column editorial layout
   ------------------------------------------------------------ */
.contact {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s48);
}
@media (min-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr 280px;
    gap: var(--s64);
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .contact__inner { grid-template-columns: 1fr 320px; }
}

.contact__sub {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin-top: var(--s20);
  margin-bottom: var(--s32);
}

.contact__email {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(18px, 3vw, 26px);
  color: var(--black);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  min-height: 44px;
  align-items: center;
  transition: color var(--dur);
}
.contact__email::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.contact__email:hover { color: var(--orange); }
.contact__email:hover::after { width: 100%; }

/* Side column */
.contact__side { padding-top: var(--s8); }
@media (min-width: 768px) {
  .contact__side {
    border-left: 1px solid var(--line);
    padding-left: var(--s40);
    padding-top: 0;
  }
}

.contact__side-label {
  font-family: var(--f-head);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s20);
}

.contact__socials {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__socials a {
  display: flex;
  align-items: center;
  gap: var(--s12);
  padding: 10px 0;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--line);
  transition: color var(--dur), gap var(--dur);
  min-height: 44px;
}
.contact__socials a:last-child { border-bottom: none; }
.contact__socials a:hover { color: var(--orange); gap: var(--s16); }

.contact__socials img {
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform var(--dur);
}
.contact__socials a:hover img { transform: scale(1.15); }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--black);
  padding: var(--s24) 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s12);
}

.footer__logo { min-height: unset; }
.footer__logo img {
  height: 24px; width: auto;
  filter: invert(1);
  opacity: 0.65;
  transition: opacity var(--dur);
}
.footer__logo:hover img { opacity: 1; }

.footer__copy {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}

.footer__links {
  display: flex;
  gap: var(--s20);
}
.footer__links a {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  transition: color var(--dur);
  min-height: unset;
}
.footer__links a:hover { color: var(--orange); }

@media (max-width: 520px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ------------------------------------------------------------
   SUBPAGES
   ------------------------------------------------------------ */
.subpage {
  padding-top: calc(var(--nav-h) + var(--s64));
  padding-bottom: var(--s80);
  min-height: 80vh;
  background: var(--bg);
}
.subpage__header {
  margin-bottom: var(--s48);
  padding-bottom: var(--s32);
  border-bottom: 1px solid var(--line);
}
.subpage__header .label { margin-bottom: var(--s12); }
.subpage__content h2 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  margin: var(--s40) 0 var(--s12);
}
.subpage__content p {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: var(--s12);
}
.subpage__content a { color: var(--orange); }
.subpage__content a:hover { opacity: 0.75; }
.subpage__content ul { list-style: disc; padding-left: var(--s24); margin-bottom: var(--s12); }
.subpage__content li {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 6px;
}

/* scroll margin for fixed nav */
#home, #art, #design, #about, #contact {
  scroll-margin-top: var(--nav-h);
}
