@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* space small, medium & large */

:root{
  --brand: #F10036;
  --text: #1f1f1f;
  --bg: #ffffff;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
}

section{
  padding: var(--space-lg) 0;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

h1{
 font-family: "Impact", Haettenschweiler, Arial Narrow Bold, sans-serif; 
 color: var(--brand);
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

html{
  scroll-behavior: smooth;
}

main.layout-wide{
  max-width: none;
  margin: 2rem 0 0;
  padding: 2rem clamp(1.25rem, 4vw, 4rem); /* left/right gutter */
}
/* editorial column: wider + left aligned with a nice gutter */
.editorial{
  max-width: 90rem;   /* page can be wide */
  margin-left: 4rem;
  margin-right: 2rem;
}

.editorial .about-text,
.editorial .what-we-do-text{
  max-width: 75ch;    /* text stays readable */
}

@media (min-width: 1200px){
  .editorial{
    margin-left: 4rem; /* stops it drifting too far */
  }
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 1rem 2rem;
  position: relative; /* needed for mobile dropdown */
}

/* Target links inside nav-links instead */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #d90030;
}

.nav-links a.active {
  color: var(--brand);
}

.nav-links a.active:hover {
  color: var(--brand);
}


/* Hide hamburger on desktop */
.nav-toggle {
  display: none;
}

/* For mobile */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #d90030;
}

.nav-links a.active {
  color: var(--brand);
}

main{
  max-width: 70ch;
  margin: 0 auto;
  padding: 2rem;
}

/*.layout-wide section{
  padding-top: 1.5rem;
  padding-bottom: 3rem;
} */
.content-narrow{
  max-width: 70ch;
  margin: 0;
  margin-left: 6vw;
}
@media (min-width: 1200px){
  .content-narrow{ margin-left: 6rem; }
}
  

/* HOME */

#brandTitle,
#brandTagline {
  color: var(--brand-color);
  transition: color 1000ms ease-in-out;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero{
    font-family: "Impact", Haettenschweiler, Arial Narrow Bold, sans-serif;
    color: var(--brand); 
    text-align: center;
    padding: 6rem 1rem;
}

.tagline{
  font-family: "Impact", Haettenschweiler, Arial Narrow Bold, sans-serif;
  color: var(--brand);
  margin-top: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
}

.hero-title{
 font-family: "Impact", Haettenschweiler, Arial Narrow Bold, sans-serif;
 font-size: clamp(4rem, 10vw, 9rem);
 line-height: 0.9;
 letter-spacing: 0.03em;
 margin-top: 10rem;
}

p{
  margin: 0 0 1.1rem;
}

/* ABOUT US */

p.about-text, .what-we-do-text
{
  font-family: "DM Sans", sans-serif;
  color: var(--text);
   font-size: 20px;
  line-height: 1.8;        /* was 2.25 */
  letter-spacing: 0.04em;  /* was 0.04em */
  max-width: 72ch; 
}

.about-tagline{
 color: var(--brand);
  font-weight: 320;
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.page-title
{ font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 3vw, 3.5rem);
  color: var(--brand);
  text-align: start;
  padding-bottom: 0;
  margin: 0 0 3rem;
}

.role-title ,
.what-we-do-title{
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.5rem, 3vw, 3rem);
  color: var(--brand);
 margin: 0 0 1rem;
  padding-bottom: 0;

}

.role{
  padding-top: 1.5rem;
}


.what-we-do{
 padding: 1.5rem 0; 
}


.what-we-do-subtitle{
font-family: "DM Sans", sans-serif;
font-size: clamp(1.5rem, 2vw, 2rem);
 font-weight: 600;
 letter-spacing: 0.04em;
 margin: 1.5rem 0 0.35rem;
 color: var(--text);

} 

.what-we-do-subtitle + p {
 margin-top: 0.75rem;
}

.what-we-do-text{
  font-size: 20px;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 2.25;
  margin-bottom: 1.5rem;
}

.what-we-do-subtitle + .what-we-do-text {
  margin-top: 1.75rem;
}
  

/* MEET OUR TALENT */

.talent-text{
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  font-size: 80px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 7rem;
}


/* TALENT GRID LAYOUT
if you want a structure layout such as rows and column 
we use CSS grid */

.talent-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem; /* space between cards */
  margin-top: 2rem;
}

/* repeat(3, ...) = 3 equal columns
1fr = 1 fraction of available space
minmax(0,1fr) prevents overflow issues in grid children
*/

/* Resonsive Grid */

@media (max-width: 900px){
  .talent-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .talent-grid{
    grid-template-columns: 1fr;
  }
}


.talent-card{
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.6rem;
  /* We use transform for hover moment
  because it's GPU accelerated and smoother */
  transition: transform 220ms ease;

  /* performance hint
  tells the browser this element will animate */
  will-change: transform;
}

.talent-card:hover{
  transform: translateY(-6px);
  /*
  Shadow gives depth.
  Makes it feel like it’s lifting off the page.
  */
}



.talent-avatar{
  aspect-ratio: 4 / 5; /* controls image proportions */
  overflow: hidden;
}

.talent-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-fit: cover makes the image fill the container while maintaining aspect ratio */
  display: block;
  filter: saturate(0.8);
  transition: transform 400ms ease, filter 300ms ease;
}

.talent-card:hover .talent-avatar img{
  transform: scale(1.04);
  filter: saturate(1);
}

.talent-meta h3{
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  color: var(--text);
  margin: 0;
}

.talent-meta p{
  margin: 0.15rem 0 0 ;
  opacity: 0.6;
  font-size: 0.95rem;
}

/* BASIC AVATAR TEST LAYOUT */

.avatar-profile{
  padding: 3rem 4rem 6rem;
}

.talent-title{
  margin: 0 0 4rem;
}

.avatar-profile-content{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 55vh;
}
.avatar-profile-bio{
  width: 100%;
  text-align: center;
}

.avatar-profile-bio h2{
  font-family: "DM Sans", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

/* Bio */

.avatar-profile-bio{
  font-size: 64px;
  text-align: center;
}

.avatar-profile-description{
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* Avatar */

.avatar-profile-image img{
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* TALENT PROFILE */

.talent-profile-page .layout-wide{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}


.talent-profile-page .editorial{
  width: 100%;
  margin: 0;
  padding: 0;
}

.talent-collage{
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  position: relative;
  width: 100%;
  min-height: 650px;
}
/* Talent name overlay on top of the collage */

.talent-name{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--brand);
  font-size: clamp(3rem, 7vw, 6.25rem);
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

/* Large feature image that spans both rows */
.collage-large{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* top right image */
.collage-small-top{
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* bottom right image */
.collage-small-bottom{
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.talent-bio{
  max-width: 760px;
  margin-top: 10rem;
  margin-left: 4rem;
  margin-right: 0;
}

.talent-role{
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.talent-description{
  font-family: "DM Sans", sans-serif;
  font-size: 1.35rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  max-width: 38ch;
}

.talent-social{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 4rem;
}

.talent-social a{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  width: fit-content;
}

.talent-social .followers{
  margin-left: 0.5rem;
  opacity: 0.6;
}

.talent-social a:hover{
  color: var(--brand);
}

.talent-social i{
  font-size: 1.5rem;
}

.talent-social .platform{
  font-weight: 500;
}
/* ---- editorial gallery---- */

.editorial-gallery{
  margin-top: 4rem;
}

.gallery-title{
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-left: 1rem;
}

/* Container */

.talent-gallery{
  display: grid;
  width: 100%;
  gap: 0;
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
}

.gallery-item{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; /* hides any overflow when image scales */
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease; /* smooth animation */
}

/* slight zoom when hovering */

.gallery-item:hover img{
  transform: scale(1.05);
}

.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s  ease;
}

.gallery-item:hover::after{
  background: rbga(0,0,0,0.08);
}

.gallery-link{
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 18px;
  color: white;
  opacity: 0;
  transition: opacity 0.3 ease;
}

.gallery-item:hover .gallery-link{
  opacity: 1;
}

/* =========================
   LAYOUT THREE (TWO)
   1 large + 2 small + 1 wide + 2 small
   ========================= */

.talent-gallery--layout-two{
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 22w 22vw 16vw 16vw;
}

/* image 1 = large left image */

.talent-gallery--layout-two .gallery-item-1{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* image 2 = top right */
.talent-gallery--layout-two .gallery-item-2{
grid-column: 2 / 3;
grid-row: 1 / 2;
}

/* image 3 = middle right */
.talent-gallery--layout-two .gallery-item-3{
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

/* image 4 = wide image across both columns */
.talent-gallery--layout-two .gallery-item-4{
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}

/* image 5 = bottom left */
.talent-gallery--layout-two .gallery-item-5{
  grid-column: 1 / 2;
  grid-row: 4 / 5;
}

/* image 6 = bottom right */
.talent-gallery--layout-two .gallery-item-6{
  grid-column: 2 / 3;
  grid-row: 4 / 5;
}



/* OUR WORK */

/*----Carousel wrapper----*/
.carousel{
  position: relative;
  overflow: hidden;
  /* NOTE: This hides slides that are off-screen.
  W/o it, you'd see slide 1,2,3 in a row. */
  border-radius: 6px;
  background: #f5f2f2;
}

/* Track is the moving row */
.carousel-track{
  display: flex;
  /* NOTE: flex makes slides sit next to each other horizontally */
  transition: transform 0.5s ease;
}

/* Each slide should take up to 100% of the carousel width */
.slide{
  min-width: 100%;
  /* NOTE: This is key.
  Slide 1 = 100% width, slide2 = 100% width, etc.
  So moving the track by -100% shows the next slide. */
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* Image sizing */
.slide img{
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;

  /* NOTE: 420PX is a design choice.
  Try 360px if it feels tall, 480 px if it needs more impact. */
}

/* Caption styling */
.slide-caption{
  position: absolute;
  left: 2rem;
  bottom: 2rem;

  max-width: 40ch;
  /* "ch" roughly means character width. 40ch = ~40 characters per line.
  helps text look editorial and not too wide. */

  background: rgba(255,255,255,0.85);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}



/*Buttons*/
.carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* NOTE: This vertically centres the button by shifting it up half its height. */

  width: 44px;
  height: 44px;
  border-radius: 999px; /* perfect circle */
  border: 0;
  background: rgba(255,255,255,0.85);
  cursor: pointer;

  font-size: 28px;
  line-height: 1;
}

/* Button positions */

.carousel-btn--prev::before{
  content: "‹";
  font-weight: 700;
}
.carousel-btn--next::before{
  content: "›";
  font-weight: 700;
}


.carousel-btn--prev{
  left: 1rem;
}
.carousel-btn--next{
  right: 1rem;
}

.carousel-btn{
  z-index: 10;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.7);
  transition: background 200ms ease, transform 200ms ease;
}

.carousel-btn:hover{
  background: rgba(255,255,255,0.95);
  transform: translateY(-50%) scale(1.05);
}
.carousel-track{
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dots */
.carousel-dots{
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.carousel-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px; /* perfect circle */
  border: 0;
  background: #cfcfcf;
  cursor: pointer;
}

.carousel-dot.is-active{
  background: var(--brand);
}

/* CONTACT US */

.contact-page{
  padding: 3rem 0; /* top/bottom space */
}

main.contact-main{
  max-width: none;
  margin: 0;
  padding: 4rem 0;
}

.contact-location p + p,
.contact-hours p + p{
  margin-top: 0.4rem;
}

.contact-title{
  text-align: center;
  font-size: clamp(7rem, 7vw, 7.5rem);
}

.contact-location{
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.01em;
   margin-bottom: 2.2rem;
}

.contact-hours{
margin-bottom: 3rem;
}

.email{
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: var(--brand);
  font-size: 35px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.social-media a{
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  text-decoration: none;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 8px;
}


/* 2-column layout: info left, form card right */
.contact-layout{
  display: grid;
  grid-template-columns: 1fr 1.6fr; /* form side a bit bigger */
  gap: 6rem;                      /* breathing space between columns */
  align-items: start;

  max-width: 1200px;                /* stops it stretching too much */
  margin: 0;                        /* important: stops centering */
  padding: 0 4rem;                  /* breathing space from the edges */
}

/* left column spacing */
.contact-info{
 display: flex;
flex-direction: column;
}

.contact-info p{
  margin: 0;
}

.email{
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* make the whole card smaller */
.contact-form-card{
  background: #f5f2f2;
  max-width: 7200px;          /* wider */
  width: 100%;
  padding: 2rem 2.5rem;   /* smaller padding */
  margin-left: 15rem;
  border-radius: 1px;
  background: #f5f2f2;
  justify-self: start;  
  
     /* keeps it from drifting */
}
.contact-form-card textarea{
  min-height: 110px; /* smaller */
  resize: vertical;
}

/* 2-column layout */
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;  /* less vertical space */
}

/* message spans full width */

.form-group{
  margin-bottom: 1.25rem;  /* reduce slightly */
}

.form-group--full{
  grid-column: 1 / -1;
}
.form-group label{
  font-size: 1rem;     /* bigger */
  font-weight: 500;    /* slightly stronger */
  margin-bottom: 0.4rem;
}

/* underline inputs */
.form-group input,
.form-group textarea{
  width: 100%;
  border: none;
  border-bottom: 2px solid #c5c5c5;
  background: transparent;
  padding: 0.45rem 0;      /* smaller height */
  font-size: 0.95rem;      /* slightly smaller than labels */
  outline: none;
  font: inherit;
}

.form-group textarea{
  min-height: 110px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus{
 border-bottom: 1.5px solid var(--brand);
}
/* button sits under message, aligned left like Canva */
.btn-send{
  grid-column: 1 / 2;
  width: fit-content;
  padding: 0.7rem 1.3rem;
  width: 50%;
  border: 0;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-send:hover{
  background: #d90030;
}
/* Base Typography */
body{
  font-size: 20px;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #1f1f1f;
   opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
  margin: 0;
}


body.is-loading,
body.is-leaving{
  opacity: 0;
  filter: blur(8px);
  transform: translateY(6px);
}


/* FOOTER */

.site-footer{
  padding: 2rem 0;
  margin-top: 4rem;
  margin-left: 1rem;
  font-size: 0.95rem;
  color: var(--text);
}

.site-footer .footer-nav{
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.site-footer a{
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
}

.site-footer a:hover{
  color: #d90030;
  opacity: 1;
}

.site-footer .copyright{
  margin-right: 4rem;
  opacity: 0.85;
}

/* ================================
   RESPONSIVE - TABLET & MOBILE
   ================================ */

/* TABLET (max 768px) */
@media (max-width: 768px) {

  /* HOME - make tagline much smaller */
  .tagline {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 6rem);
    margin-top: 5rem;
  }

  /* CONTACT - title way too small, bump it up */
  .contact-title {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  /* ABOUT - paragraph is too big */
  p.about-text,
  .what-we-do-text {
    font-size: 16px;
    line-height: 1.6;
  }

  /* General body text too large on mobile */
  body {
    font-size: 16px;
  }

  /* Page titles too small - bump up */
  .page-title {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .role-title,
  .what-we-do-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  /* About tagline */
  .about-tagline {
    font-size: 18px;
  }

  /* Fix contact form on mobile */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.25rem;
  }

  .contact-form-card {
    margin-left: 0;
    width: 100%;
    padding: 1.5rem;
  }

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

  .btn-send {
    width: 100%;
    grid-column: 1 / -1;
  }

  /* Nav */
  .site-nav {
    justify-content: flex-end;
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    z-index: 99;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a:hover {
    background: #fafafa;
    color: var(--brand);
  }

  /* Editorial */
  .editorial {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  /* Talent collage */
  .talent-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .collage-large {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 400px;
  }

  .collage-small-top,
  .collage-small-bottom {
    display: none;
  }

  .talent-name {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .talent-bio {
    margin-top: 3rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  /* Wide layout padding */
  main.layout-wide {
    padding: 1.5rem 1.25rem;
  }

  /* Carousel */
  .slide img {
    height: 280px;
  }

  .slide-caption {
    left: 1rem;
    bottom: 1rem;
    max-width: 80%;
  }
}

/* MOBILE (max 480px) */
@media (max-width: 480px) {

  .tagline {
    font-size: 0.85rem;
  }

  p.about-text,
  .what-we-do-text {
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-title {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  .nav-links li a {
    font-size: 0.9rem;
  }

  .page-title {
    font-size: clamp(2.5rem, 8vw, 3rem);
  }

  .email {
    font-size: 1.4rem;
  }

  .contact-layout {
    padding: 0 1rem;
  }

  main.layout-wide {
    padding: 1rem;
  }
}

