/* ==========================================================================
   Pooragrapher — design tokens pulled directly from the Webflow reference
   (artist-photographer.webflow.io) + the existing Pooragrapher build.
   ========================================================================== */

:root{
  --black: #000000;
  --white: #ffffff;
  --grey:  #c7c7c7;
  --red:   #fb1516;   /* Webflow source-of-truth red */
  --red-2: #fa0202;   /* Pooragrapher custom-section red, used for buttons/CTAs */
  --red-deep: #3d0101;
  --line:  #262626;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  --container: 1200px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  cursor: none;
}

img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }

h1,h2,h3,h4{ margin: 0; font-family: var(--font-display); font-weight: 400; color: var(--grey); line-height: 1.1; }

.h4, h4{ font-size: 3rem; }
.red-heading{ color: var(--red); font-size: 1.1rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.red-textspan{ color: var(--red); }
.grey-span{ color: var(--grey); }

.body-text-1{ font-size: 1.125rem; font-weight: 500; line-height: 1.5; color: var(--white); }
.caption{ font-size: .875rem; font-weight: 400; line-height: 1.5; color: var(--grey); }

.section-heading{ display:flex; flex-direction: column; gap: 8px; padding: 0 3rem; margin-bottom: 40px; }
.section-title{ font-size: clamp(2.4rem, 6vw, 5.2rem); }

/* custom cursor ------------------------------------------------------- */
.cursor-dot{
  position: fixed; top:0; left:0; width: 20px; height:20px;
  background: var(--red); border-radius: 100%;
  pointer-events: none; z-index: 9999;
  transform: translate3d(-50%,-50%,0);
  transition: transform .08s linear, opacity .2s ease;
}
@media (hover:none), (max-width: 767px){ .cursor-dot{ display:none; } body{ cursor: auto; } }

/* ==========================================================================
   SUB-PAGE HERO (Portfolio / Worked With / Services / Category pages)
   ========================================================================== */
.page-hero{
  padding: 160px 3rem 60px;
  max-width: var(--container);
  margin: 0 auto;
}
.page-title{ font-size: clamp(3rem, 10vw, 7rem); color: var(--grey); margin: 8px 0 20px; }
.page-intro{ max-width: 560px; color: var(--grey); }
@media (max-width: 767px){
  .page-hero{ padding: 130px 1.25rem 40px; }
}

/* ==========================================================================
   WORKED WITH — dedicated page (Clients / Agencies)
   ========================================================================== */
.worked-with-group{ padding: 3rem 3rem 5rem; max-width: var(--container); margin: 0 auto; }
.worked-with-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.worked-with-item{ display:flex; flex-direction:column; align-items:center; justify-content:center; }
.worked-with-logo{
  width:100%; aspect-ratio: 190/104; display:flex; align-items:center; justify-content:center;
}
.worked-with-logo img{
  max-width:100%; max-height:100%; object-fit:contain;
  filter: grayscale(100%); opacity:.7; transition: filter .3s ease, opacity .3s ease;
}
.worked-with-item:hover .worked-with-logo img{ filter: grayscale(0%); opacity:1; }
.worked-with-logo.placeholder-box{
  border: 1px dashed var(--line); border-radius: 4px; color: var(--line);
  font-family: var(--font-display); letter-spacing:.1em; font-size:.8rem; width:100%; height:100%;
}
@media (max-width: 900px){ .worked-with-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px){ .worked-with-group{ padding: 2rem 1.25rem 3rem; } }

/* ==========================================================================
   SERVICES — homepage list + dedicated page cards
   ========================================================================== */
.services-section{ padding: 5rem 3rem; max-width: var(--container); margin: 0 auto; }
.services-list{ border-top: 1px solid var(--line); }
.service-row{
  display:flex; align-items:center; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line);
  transition: padding-left .3s ease;
}
.service-row .num{ font-family: var(--font-display); color: var(--red-deep); font-size: .9rem; width: 30px; }
.service-row .name{ font-family: var(--font-display); font-size: clamp(1.1rem, 2.6vw, 2rem); flex:1; color: var(--grey); letter-spacing:.01em; }
.service-row .arrow{ color: var(--grey); font-size: 1.3rem; transition: color .3s ease, transform .3s ease; }
.service-row:hover{ padding-left: 10px; }
.service-row:hover .name{ color: var(--red); }
.service-row:hover .arrow{ color: var(--red); transform: translateX(4px); }
@media (max-width: 767px){ .services-section{ padding: 3.5rem 1.25rem; } }

.services-detail-section{ padding: 1rem 3rem 5rem; max-width: var(--container); margin: 0 auto; display:flex; flex-direction:column; }
.service-detail-card{
  display:flex; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line);
}
.service-detail-num{ font-family: var(--font-display); color: var(--red-deep); font-size: 1.2rem; width: 40px; flex-shrink:0; }
.service-detail-name{ font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--grey); margin-bottom: 10px; }
.service-detail-desc{ color: var(--grey); font-family: var(--font-body); line-height:1.6; max-width: 620px; margin:0; }
.service-detail-link{
  display:inline-block; margin-top: 16px; color: var(--red); font-size: .9rem;
  letter-spacing: .02em; transition: color .25s ease;
}
.service-detail-link:hover{ color: var(--white); }
.service-reel-grid{ margin-top:20px; grid-template-columns: minmax(150px, 170px); }
.service-reel-grid .reel-brand{ font-size: 1rem; }
.service-reel-grid .reel-embed-ig{ min-height: 260px; }
@media (max-width: 767px){
  .services-detail-section{ padding: 1rem 1.25rem 3.5rem; }
  .service-detail-card{ gap: 14px; }
  .service-reel-grid{ grid-template-columns: minmax(140px, 160px); }
}

/* ==========================================================================
   CONTACT DETAILS
   ========================================================================== */
.contact-details{
  display:flex; align-items:center; gap: 14px; margin-top: 20px; flex-wrap: wrap; justify-content:center;
}
.contact-detail-link{ color: var(--grey); font-size: 1rem; transition: color .25s ease; }
.contact-detail-link:hover{ color: var(--red); }
.contact-detail-divider{ color: var(--line); }

/* ==========================================================================
   1. HEADER
   ========================================================================== */
.nav-bar{
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  display:flex; justify-content: space-between; align-items:center;
  padding: 18px 3rem;
  background: transparent;
  transition: background-color .3s ease, padding .3s ease;
}
.nav-bar.scrolled{ background-color: rgba(0,0,0,.85); padding: 12px 3rem; backdrop-filter: blur(6px); }

.brand-icon{ display:flex; align-items:center; }
.brand-image{ height: 42px; width:auto; }

.nav-menu{ display:flex; gap: 8px; }
.nav-link{
  color: var(--white); padding: 10px 22px; font-size: .95rem;
  letter-spacing: .03em; transition: color .25s ease;
}
.nav-link:hover{ color: var(--red); font-weight: 600; }
.nav-link.active{ color: var(--red); font-weight: 600; }

.nav-toggle{
  display:none; flex-direction: column; gap:5px; background:none; border:0; cursor:pointer; padding: 10px;
}
.nav-toggle span{ width: 24px; height:2px; background: var(--white); display:block; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px){
  .nav-bar{ padding: 16px 1rem; }
  .nav-toggle{ display:flex; }
  .nav-menu{
    position: fixed; top: 0; right: 0; height: 100vh; width: 70vw; max-width: 320px;
    background: var(--black); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 2rem; gap: 4px;
    transform: translateX(100%); transition: transform .35s ease;
  }
  .nav-menu.open{ transform: translateX(0); }
  .nav-link{ padding: 14px 0; font-size: 1.2rem; width:100%; }
}

/* ==========================================================================
   2. HERO / MAIN BANNER  (exact structure/type-scale from reference hero)
   ========================================================================== */
.hero-section{
  position: relative;
  min-height: 100vh;
  background-color: var(--black);
  overflow: hidden;
}
.hero-image-wrapper{
  display:flex; justify-content:center; align-items:center;
  position: relative; min-height: 100vh;
}
.hero-image{
  max-height: 100vh; width: auto; margin: 0 auto;
  object-fit: cover;
}
.hero-heading-wrapper{
  position:absolute; left:0; right:0; bottom:0;
  display:grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto;
  gap:16px; padding: 0 3rem 1rem; min-height: 100%;
  pointer-events:none;
}
.hero-about-text-wrapper{
  grid-column: 1 / 3; align-self:center; justify-self:end;
  pointer-events:auto;
}
.hero-body-text-wrapper{ max-width: 350px; }
.hero-heading-div{ align-self:end; justify-self:start; }
.hero-heading-div h1{
  font-size: clamp(3.5rem, 16vw, 21.875rem);
  color: var(--grey);
  line-height: 1;
}
.heading-highlight-text-div{ align-self:end; justify-self:end; margin-bottom: 90px; pointer-events:auto; }

.scroll-cue{
  position:absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--grey); border-radius: 14px;
}
.scroll-cue span{
  display:block; width:4px; height:8px; background: var(--red); border-radius: 2px;
  margin: 6px auto; animation: scrollcue 1.6s ease infinite;
}
@keyframes scrollcue{ 0%{ transform: translateY(0); opacity:1;} 70%{ transform: translateY(14px); opacity:0;} 100%{opacity:0;} }

@media (max-width: 767px){
  .hero-section{ min-height: auto; }
  .hero-image-wrapper{ min-height: 58vh; }
  .hero-image{ width: 100%; height: 58vh; object-fit: cover; object-position: top center; margin: 0; }

  .hero-heading-wrapper{
    position: static;
    display: flex;
    flex-direction: column;
    gap: 22px;
    grid-template-columns: none;
    padding: 32px 1.25rem 56px;
    background: var(--black);
    text-align: center;
    pointer-events: auto;
  }
  .hero-about-text-wrapper{ order: 2; grid-column: auto; justify-self: center; }
  .hero-body-text-wrapper{ max-width: 320px; margin: 0 auto; }
  .hero-heading-div{ order: 1; justify-self: center; }
  .hero-heading-div h1{ font-size: clamp(3rem, 17vw, 5rem); }
  .heading-highlight-text-div{ order: 3; justify-self: center; margin-bottom: 0; }
  .heading-highlight-text-div .h4{ font-size: clamp(1.3rem, 6vw, 1.7rem); white-space: nowrap; }

  .scroll-cue{ display: none; }
}

/* ==========================================================================
   3. FACES I'VE SHOT — infinite auto-scroll carousel
   ========================================================================== */
.faces-section{ padding: 6rem 0; background: var(--black); }
.faces-section .section-heading{ margin-bottom: 50px; }

.face-gallery-carousel{
  overflow: hidden; width: 100%; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.face-gallery-track{
  display:flex; gap: 20px; width: max-content;
  animation: face-scroll 30s linear infinite;
}
.face-gallery-carousel:hover .face-gallery-track{ animation-play-state: paused; }
.face-card{
  position: relative; flex: 0 0 auto; width: 240px; aspect-ratio: 3/4;
  overflow: hidden; background: #141414;
}
.face-card img{
  width:100%; height:100%; object-fit:cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter .6s ease, transform .6s ease;
}
.face-card::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.88) 100%);
  pointer-events:none;
}
.face-card:hover img{
  filter: grayscale(0) sepia(1) saturate(1.5) hue-rotate(-50deg) brightness(1) contrast(1);
  transform: scale(1.06);
}
.face-label{
  position:absolute; left:14px; bottom:12px; z-index:2;
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing:.03em; color: var(--white);
}
.face-label small{
  display:block; font-family: var(--font-body); font-size:.68rem; color: var(--grey);
  letter-spacing:.08em; text-transform:uppercase; margin-top:2px;
}
@keyframes face-scroll{ 0%{transform: translateX(0);} 100%{transform: translateX(-50%);} }
@media (max-width:767px){ .face-card{ width:170px; } .face-gallery-track{ animation-duration: 20s; } }

/* ==========================================================================
   4. ABOUT ME
   ========================================================================== */
.about-me-section{ padding: 6rem 3rem; }
.about-me-grid-wrapper{
  display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:center;
  max-width: var(--container); margin: 0 auto;
}
.about-me-text-wrapper{ max-width: 520px; }
.about-me-image{ max-height: 700px; width:100%; object-fit:cover; }
@media (max-width: 767px){
  .about-me-section{ padding: 4rem 1rem; }
  .about-me-grid-wrapper{ grid-template-columns: 1fr; }
  .about-me-text-wrapper{ max-width: none; }
}

/* ==========================================================================
   5. MY PORTFOLIO
   ========================================================================== */
.my-portfolio-section{ padding: 6rem 3rem; display:flex; flex-direction:column; gap:50px; }
.my-portfolio-section .section-heading{ flex-direction: row; align-items:center; justify-content: space-between; padding:0; }
.portfolio-icons{ display:flex; gap:16px; }
.arrow-icon{ width: 24px; }
.portfolio-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 320px; gap: 16px;
}
.portfolio-image-wrapper{ overflow:hidden; }
.portfolio-image-wrapper.span-2{ grid-column: span 2; grid-row: span 2; }
.portfolio-image{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.portfolio-image-wrapper:hover .portfolio-image{ transform: scale(1.05); }
@media (max-width: 767px){
  .my-portfolio-section{ padding: 4rem 1rem; }
  .portfolio-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .portfolio-image-wrapper.span-2{ grid-column: span 2; grid-row: span 1; }
}

/* ==========================================================================
   REELS — portfolio page, segregated by service type
   ========================================================================== */
.reels-section{ padding: 2rem 3rem 6rem; max-width: var(--container); margin: 0 auto; }
.reel-group{ margin-top: 56px; }
.reel-group:first-of-type{ margin-top: 0; }
.reel-group-title{
  font-family: var(--font-display); color: var(--red); font-size: 1.6rem;
  letter-spacing: .04em; text-transform: uppercase; margin: 0 0 22px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.reel-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.reel-card{ display:block; }
.reel-embed{
  position:relative; border-radius: 6px; overflow:hidden;
  background: linear-gradient(160deg, #1c1c1c, #000);
  border: 1px solid var(--line);
  transition: border-color .3s ease, transform .3s ease;
}
.reel-card:hover .reel-embed{ border-color: var(--red); transform: translateY(-4px); }
.reel-embed-yt{ aspect-ratio: 9/16; }
.reel-embed-yt .reel-iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.reel-embed-ig{ min-height: 420px; display:flex; align-items:center; justify-content:center; padding: 2px; }
.reel-embed-ig iframe{ margin:0 !important; } /* instagram injects its own iframe once embed.js runs */
.reel-caption{ margin-top: 14px; display:flex; flex-direction:column; gap:4px; }
.reel-brand{ font-family: var(--font-display); font-size: 1.5rem; letter-spacing:.02em; color: var(--white); line-height:1.05; }
.reel-feature{ font-size: .9rem; color: var(--grey); }
.reel-open{ font-size: .85rem; color: var(--red); margin-top:4px; transition: color .25s ease; }
.reel-open:hover{ color: var(--white); }
@media (max-width: 640px){
  .reels-section{ padding: 1.5rem 1.25rem 4rem; }
  .reel-grid{ grid-template-columns: 1fr; gap:28px; }
  .reel-group{ margin-top: 40px; }
}

/* ==========================================================================
   PORTFOLIO CATEGORY CARDS — 2x2 grid on the portfolio page
   ========================================================================== */
.portfolio-categories-section{ padding: 2rem 3rem 5rem; max-width: var(--container); margin: 0 auto; }
.portfolio-cat-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.portfolio-cat-card{
  position:relative; overflow:hidden; border-radius: 10px; border: 1px solid var(--line);
  min-height: 440px; display:flex; align-items:flex-end;
}
.cat-card-bg{
  position:absolute; inset:0; background-size: cover; background-position: center;
  filter: grayscale(55%) brightness(.55);
  transition: transform .6s ease, filter .6s ease;
}
.portfolio-cat-card:hover .cat-card-bg{ transform: scale(1.08); filter: grayscale(0%) brightness(.42); }
.cat-card-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.92) 100%);
}
.cat-card-content{ position:relative; z-index:2; padding: 34px; width:100%; }
.cat-card-tag{
  display:block; font-family: var(--font-body); color: var(--red); font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px;
}
.cat-card-title{
  font-size: clamp(2.6rem, 5vw, 4.4rem); color: var(--white); margin: 0 0 24px; line-height: .95;
}
.cat-card-actions{ display:flex; gap: 14px; flex-wrap: wrap; }
.cat-btn{
  font-family: var(--font-display); letter-spacing: .05em; text-transform: uppercase;
  padding: 12px 28px; border-radius: 4px; font-size: .95rem; cursor: pointer;
  border: none; transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.cat-btn-view{ background: var(--red-2); color: var(--white); }
.cat-btn-view:hover{ background:#d40202; transform: translateY(-2px); }
.cat-btn-share{ background: transparent; color: var(--white); border: 1px solid var(--grey); }
.cat-btn-share:hover{ border-color: var(--red); color: var(--red); }
@media (max-width: 900px){
  .portfolio-cat-grid{ grid-template-columns: 1fr; }
  .portfolio-cat-card{ min-height: 380px; }
}
@media (max-width: 479px){
  .portfolio-categories-section{ padding: 1.5rem 1.25rem 3.5rem; }
  .cat-card-content{ padding: 24px; }
}

/* ==========================================================================
   CATEGORY SUB-PAGES — DOP / Direction / Writing / Fashion
   ========================================================================== */
.cat-page-hero{ position:relative; }
.back-link{
  display:inline-block; color: var(--grey); font-size: .85rem; letter-spacing: .04em;
  margin-bottom: 24px; transition: color .25s ease;
}
.back-link:hover{ color: var(--red); }
.cat-page-reels{ padding-top: 0; }
.reel-grid-single{ grid-template-columns: minmax(300px, 420px); }

.fashion-gallery-section{ padding: 2rem 3rem 6rem; max-width: var(--container); margin: 0 auto; }
.fashion-gallery-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fashion-gallery-item{ display:block; overflow:hidden; border-radius: 6px; aspect-ratio: 4/5; border: 1px solid var(--line); }
.fashion-gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.fashion-gallery-item:hover img{ transform: scale(1.06); }
@media (max-width: 900px){ .fashion-gallery-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px){
  .fashion-gallery-section{ padding: 1.5rem 1.25rem 4rem; }
  .fashion-gallery-grid{ grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================================
   6. WORKED WITH
   ========================================================================== */
.clients-section{ padding: 5rem 3rem; text-align:center; }
.worked-title{
  font-family: var(--font-display); color: var(--red);
  font-size: clamp(2.5rem, 8vw, 4rem); letter-spacing: 1px; margin-bottom: 40px;
}
.clients-grid{
  display:grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
  max-width: 1400px; margin: 0 auto;
}
.client-item{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; }
.client-item img{
  width:100%; aspect-ratio: 190/104; object-fit:contain;
  filter: grayscale(100%); opacity:.6; transition: filter .3s ease, opacity .3s ease;
}
.client-item:hover img{ filter: grayscale(0%); opacity:1; }
.client-name{ font-size:.85rem; color: var(--grey); font-family: var(--font-body); }
.client-item.placeholder{
  border: 1px dashed var(--line); border-radius: 4px; color: var(--line);
  font-family: var(--font-display); letter-spacing: .1em; font-size:.8rem;
  aspect-ratio: 190/104;
}
.view-all-wrap{ margin-top: 40px; }
.view-all-btn{
  display:inline-block; font-family: var(--font-display); font-size: 20px; letter-spacing:1px;
  text-transform: uppercase; color: var(--white); background-color: var(--red-2);
  padding: 14px 36px; border-radius: 4px; transition: background-color .3s ease, transform .2s ease;
}
.view-all-btn:hover{ background-color:#d40202; transform: translateY(-2px); }
@media (max-width: 1024px){ .clients-grid{ grid-template-columns: repeat(4,1fr);} }
@media (max-width: 680px){ .clients-grid{ grid-template-columns: repeat(3,1fr);} .clients-section{ padding: 4rem 1rem;} }

/* ==========================================================================
   7. PARALLAX STATS
   ========================================================================== */
.stats-section{
  position: relative; min-height: 60vh; display:flex; flex-direction:column;
  align-items:center; justify-content:center; overflow:hidden; padding: 4rem 1rem;
}
.stats-parallax-bg{
  position:absolute; inset: -10% 0; background-size: cover; background-position: center;
  filter: grayscale(1) brightness(.35); will-change: transform;
}
.stats-overlay{ position:absolute; inset:0; background: rgba(0,0,0,.55); }
.stats-grid{
  position:relative; z-index:2; display:grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: var(--container); width:100%; text-align:center;
}
.stat-number{ font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); color: var(--red); line-height:1; }
.stat-label{ font-size: .9rem; letter-spacing:.05em; text-transform: uppercase; color: var(--grey); margin-top: 8px; }
.stats-note{ position:relative; z-index:2; font-size:.75rem; color: var(--line); margin-top: 24px; }
@media (max-width: 767px){ .stats-grid{ grid-template-columns: repeat(2,1fr); gap: 32px 20px; } }

/* ==========================================================================
   9. CONTACT
   ========================================================================== */
.contact-section{ padding: 0 3rem; }
.footer-cta{
  min-height: 70vh; display:flex; flex-direction:column; justify-content:center; align-items:center;
  text-align:center; gap: 16px;
}
.contact-title{ font-size: clamp(3rem, 12vw, 8rem); color: var(--grey); }
.cta-button{
  margin-top: 16px; display:inline-flex; align-items:center; gap:10px;
  background: var(--red-2); color: var(--black); font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing:.05em; text-transform:uppercase; padding: 16px 32px;
  transition: background .3s ease, gap .3s ease;
}
.cta-button:hover{ background: var(--white); gap: 16px; }

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.footer-section{ padding: 3rem; border-top: 1px solid var(--line); }
.footer-links{ display:grid; grid-template-columns: 1fr 1fr; align-items:center; gap: 16px; max-width: var(--container); margin: 0 auto; }
.footer-social-icons{ display:flex; gap: 24px; justify-content:flex-end; align-items:center; }
.footer-credit{ font-size: .72rem; margin-top: 4px; opacity: .6; }
.footer-credit a{ color: var(--grey); text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover{ color: var(--red); }
.social-icon-link{ display:flex; }
.social-icon-link img{ width: 20px; opacity:.8; transition: opacity .25s ease, transform .25s ease; }
.social-icon-link:hover img{ opacity:1; transform: translateY(-2px); }
@media (max-width: 479px){
  .footer-section{ padding: 2rem 1rem; }
  .footer-links{ grid-template-columns: 1fr; text-align:center; gap: 20px; }
  .footer-social-icons{ justify-content:center; }
}
