
/* =========================================================
GOOGLE FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* =========================================================
RESET
========================================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#faf8f5;
  color:#1a1a1a;
  font-family:'Inter',sans-serif;
  font-weight:300;
  line-height:1.7;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.w{
  width:100%;
  overflow:hidden;
}

/* =========================================================
NAVIGATION
========================================================= */

.nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px;

  padding:24px 60px;

  background:rgba(0,0,0,0.18);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.nav-logo{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

.logo-mark{
  position:relative;
  width:38px;
  height:38px;
}

.logo-outer{
  width:38px;
  height:38px;
  border-radius:50%;
  border:2px solid #c8102e;
  border-right-color:#f5a800;
  transform:rotate(-25deg);
}

.logo-inner{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:22px;
  height:22px;
  border-radius:50%;
  background:#6b3a1f;
}

.logo-swirl{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:12px;
  height:12px;
  border-radius:50%;
  background:#e8d5b0;
}

.nav-name{
  font-family:'Playfair Display',serif;
  font-size:16px;
  color:#ffffff;
  letter-spacing:0.08em;
  white-space:nowrap;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  list-style:none;
  margin-left:auto;
}

.nav-links a{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.18em;
  color:rgba(255,255,255,0.82);
  transition:all .3s ease;
}

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

/* =========================================================
NAV CONTACT
========================================================= */

.nav-contact{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.nav-contact-btn{
  width:48px;
  height:48px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);

  color:#f5ead8;

  font-size:22px;
  font-weight:300;
  line-height:1;

  text-decoration:none;

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.nav-contact-btn:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.3);
  transform:translateY(-2px);
}

/* =========================================================
NAV MOBILE
========================================================= */

@media (max-width:768px){

  .nav{
    padding:16px 18px;
    gap:14px;
  }

  .nav-links{
    display:none;
  }

  .nav-name{
    font-size:14px;
    max-width:190px;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .logo-mark{
    width:36px;
    height:36px;
  }

  .logo-outer{
    width:36px;
    height:36px;
  }

  .nav-contact{
    margin-left:auto;
    gap:8px;
  }

.nav-contact-btn{
  width:50px;
  height:50px;

  font-size:24px;
  font-weight:300;

    background:rgba(10,10,10,.34);
    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
  }

}

/* =========================================================
HERO
========================================================= */

.hero-cinematic{
  position:relative;
  width:100%;
  height:100vh;
  min-height:780px;
  overflow:hidden;
  background:#000;
}

.hero-slider{
  position:absolute;
  inset:0;

  transform:translateZ(0);

  will-change:transform;
}

.hero-slide{
  position:absolute;
  inset:0;

  opacity:0;

  z-index:1;

  transition:
    opacity 3.5s ease-in-out;

  will-change:opacity;
}

.hero-slide.active{
  opacity:1;
  z-index:2;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;

  backface-visibility:hidden;

  transform:scale(1.01);

  filter:
    brightness(.92)
    contrast(1.02)
    saturate(.96);
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to right,
    rgba(0,0,0,.54),
    rgba(0,0,0,.16),
    rgba(0,0,0,.28)
  );

  z-index:3;
}

.hero-content{
  position:relative;
  z-index:5;

  max-width:760px;

  padding:
    180px
    70px
    80px;
}

.hero-eyebrow{
  font-size:11px;
  letter-spacing:0.25em;
  text-transform:uppercase;
  color:#d6c2a3;
  margin-bottom:28px;
}

.hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(52px,7vw,92px);
  line-height:1.03;
  font-weight:400;
  color:#ffffff;
  margin-bottom:28px;
}

.hero-title span{
  color:#f0d1a4;
}

.hero-subtitle{
  max-width:580px;
  font-size:18px;
  line-height:1.9;
  color:rgba(255,255,255,0.86);
  margin-bottom:42px;
}

.hero-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:24px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:18px 34px;

  border:1px solid rgba(255,255,255,0.45);

  color:#ffffff;

  font-size:11px;
  letter-spacing:0.2em;
  text-transform:uppercase;

  transition:all .3s ease;
}

.hero-btn:hover{
  background:#c8102e;
  border-color:#c8102e;
}

.hero-mini{
  font-size:12px;
  color:rgba(255,255,255,0.7);
  letter-spacing:0.08em;
}

.hero-whisper{
  position:absolute;
  right:70px;
  bottom:55px;
  z-index:5;

  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:16px;
  line-height:1.8;
  color:rgba(255,255,255,0.55);

  text-align:right;
}
/* =========================================================
GENERAL SECTIONS
========================================================= */

.section{
  padding:120px 70px;
}

.sec-label{
  font-size:10px;
  letter-spacing:0.25em;
  text-transform:uppercase;
  color:#c8102e;
  margin-bottom:38px;
}

.sec-hl{
  font-family:'Playfair Display',serif;
  font-size:clamp(34px,5vw,64px);
  font-weight:400;
  line-height:1.15;
  color:#1a1a1a;
}

.sec-hl em{
  color:#c8102e;
  font-style:italic;
}

.body-text{
  font-size:16px;
  line-height:1.95;
  color:#555;
}

.divline{
  width:50px;
  height:1px;
  background:#f5a800;
  margin:36px 0;
}

/* =========================================================
TWO COL
========================================================= */

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

/* =========================================================
SEPARATOR
========================================================= */

.cinematic-separator{
  position:relative;
  height:72vh;
  min-height:540px;
  overflow:hidden;
}

.cinematic-separator img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.separator-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.separator-content{
  position:absolute;
  inset:0;
  z-index:3;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:40px;
}

.separator-line{
  width:60px;
  height:1px;
  background:#f5a800;
  margin-bottom:36px;
}

.separator-content blockquote{
  font-family:'Playfair Display',serif;
  font-size:clamp(40px,6vw,74px);
  line-height:1.12;
  color:#ffffff;
  margin-bottom:24px;
}

.separator-content p{
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.75);
}

/* =========================================================
WHY SPAIN
========================================================= */

.why-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:90px;
  margin-top:50px;
}

.why-item{
  display:flex;
  gap:26px;
  padding:30px 0;
  border-bottom:1px solid #ece6db;
}

.why-number{
  font-family:'Playfair Display',serif;
  font-size:18px;
  color:#c8102e;
  min-width:40px;
}

.why-item h3{
  font-family:'Playfair Display',serif;
  font-size:26px;
  font-weight:400;
  margin-bottom:12px;
}

.why-item p{
  font-size:15px;
  line-height:1.9;
  color:#666;
}

/* =========================================================
REBATES
========================================================= */

.rebate-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:#e8e0d0;
}

.rebate-card{
  background:#faf8f5;
  padding:80px 50px;
}

.rebate-card.highlight{
  background:#c8102e;
}

.rebate-small{
  display:block;
  font-size:11px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  margin-bottom:24px;
  color:#888;
}

.rebate-card.highlight .rebate-small{
  color:rgba(255,255,255,0.75);
}

.rebate-big-number{
  font-family:'Playfair Display',serif;
  font-size:clamp(70px,8vw,120px);
  line-height:1;
  color:#c8102e;
  margin-bottom:24px;
}

.rebate-card.highlight .rebate-big-number{
  color:#ffffff;
}

.rebate-card p{
  font-size:15px;
  line-height:1.9;
  color:#555;
}

.rebate-card.highlight p{
  color:rgba(255,255,255,0.85);
}

/* =========================================================
LOCATIONS
========================================================= */

.locations-section{
  padding:120px 70px;
}

.locations-head{
  margin-bottom:50px;
}

.locations-head h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,5vw,66px);
  line-height:1.1;
  font-weight:400;
}

.locations-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.location-card{
  position:relative;
  overflow:hidden;
  min-height:420px;
}

.location-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.location-card:hover img{
  transform:scale(1.06);
}

.location-card span{
  position:absolute;
  left:24px;
  bottom:24px;

  font-family:'Playfair Display',serif;
  font-size:28px;
  color:#ffffff;
}

/* =========================================================
SERVICES
========================================================= */

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:#e8e0d0;
  margin-top:60px;
}

.svc{
  background:#ffffff;
  padding:60px 42px;
}

.svc-num{
  display:block;
  font-family:'Playfair Display',serif;
  color:#f5a800;
  margin-bottom:22px;
}

.svc-title{
  font-family:'Playfair Display',serif;
  font-size:28px;
  line-height:1.3;
  margin-bottom:18px;
}

.svc-body{
  font-size:15px;
  line-height:1.9;
  color:#666;
}

.svc-closer{
  margin-top:42px;
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:20px;
  color:#1a1a1a;
}

/* =========================================================
PRODUCER
========================================================= */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.producer-image img{
  width:100%;
  border-radius:2px;
}

.about-closer{
  margin-top:28px;
  font-size:15px;
  line-height:1.9;
  color:#666;
}

/* =========================================================
CONTACT
========================================================= */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.contact-details{
  margin-top:40px;

  display:flex;
  flex-direction:column;
  gap:24px;
}

.cd-label{
  font-size:10px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#c8102e;
  margin-bottom:8px;
}

.cd-val{
  font-size:15px;
  color:#555;
}

.form-wrap{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.fg{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.fg label{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:0.18em;
  color:#999;
}

.fg input,
.fg textarea,
.fg select{
  width:100%;

  padding:16px 18px;

  border:1px solid #e5ddd0;

  background:#ffffff;

  font-family:'Inter',sans-serif;
  font-size:14px;
  color:#1a1a1a;

  outline:none;
}

.fg textarea{
  min-height:140px;
  resize:vertical;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus{
  border-color:#c8102e;
}

/* =========================================================
BUTTONS
========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:18px 34px;

  background:#c8102e;
  color:#ffffff;

  border:none;

  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.18em;

  cursor:pointer;

  transition:all .3s ease;
}

.btn:hover{
  background:#9d0d25;
}

/* =========================================================
FOOTER
========================================================= */

.footer{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:34px 70px;

  border-top:1px solid #e8e0d0;
}

.footer-l{
  font-family:'Playfair Display',serif;
  color:#666;
}

.footer-r{
  font-size:11px;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:#aaa;
}

/* =========================================================
ANIMATIONS
========================================================= */

@keyframes kenburns{

  0%{
    transform:scale(1);
  }

  100%{
    transform:scale(1.08);
  }

}

/* =========================================================
MOBILE
========================================================= */

@media (max-width:991px){

  .nav{
    padding:18px 24px;
  }

  .nav-links{
    display:none;
  }

  .hero-cinematic{
    height:88vh;
    min-height:760px;
  }

  .hero-content{
    padding:140px 24px 60px;
  }

  .hero-title{
    font-size:54px;
    line-height:1.08;
  }

  .hero-subtitle{
    font-size:16px;
  }

 @media (max-width:768px){

  .hero-whisper{
    right:24px;
    bottom:260px;

    font-size:12px;
    line-height:1.7;

    color:#f0d1a4;

    opacity:.88;

    text-align:right;

    z-index:6;

    text-shadow:
      0 2px 12px rgba(0,0,0,.55);

    letter-spacing:.01em;
  }

}
  .section,
  .locations-section{
    padding:90px 24px;
  }

  .two-col,
  .why-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .services-grid,
  .rebate-cards{
    grid-template-columns:1fr;
  }

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

  .location-card{
    min-height:340px;
  }

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

  .footer{
    flex-direction:column;
    gap:18px;
    text-align:center;
    padding:34px 24px;
  }

  .separator-content blockquote{
    font-size:46px;
  }

}
/* =========================================================
SERVICE IMAGES
========================================================= */

.svc{
  background:#ffffff;
  overflow:hidden;
}

.svc-image{
  position:relative;
  width:100%;
  height:260px;
  overflow:hidden;
}

.svc-image img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:transform .7s ease;

  filter:
    brightness(.82)
    contrast(1.03)
    saturate(.92);
}

.svc:hover .svc-image img{
  transform:scale(1.05);
}

.svc-content{
  padding:42px;
}

/* =========================================================
FORM MESSAGE
========================================================= */

.form-message{
  font-size:14px;
  line-height:1.6;
  margin-top:4px;
  color:#777;
}

.form-message.success{
  color:#2f7d32;
}

.form-message.error{
  color:#c8102e;
}

/* =========================================================
FLOATING CONTACT — PREMIUM MINIMAL
========================================================= */

.floating-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1200;

  display:flex;
  flex-direction:column;
  gap:10px;
}

.floating-contact a{
  width:44px;
  height:44px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:rgba(12,12,12,.72);
  color:#f5ead8;

  border:1px solid rgba(245,234,216,.28);

  font-size:18px;
  line-height:1;

  text-decoration:none;

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  box-shadow:0 10px 28px rgba(0,0,0,.28);

  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.floating-contact a:hover{
  transform:translateY(-2px);
  background:rgba(200,16,46,.82);
  border-color:rgba(200,16,46,.9);
}

.floating-contact .wa,
.floating-contact .mail{
  background:rgba(12,12,12,.72);
}

/* MÓVIL */
@media (max-width:768px){

  .floating-contact{
    position:fixed;
    top:18px;
    right:18px;
    bottom:auto;
    left:auto;

    z-index:2000;

    display:flex;
    flex-direction:row;
    gap:10px;
  }

  .floating-contact a{
    width:44px;
    height:44px;

    font-size:18px;

    background:rgba(10,10,10,.78);
    border:1px solid rgba(255,255,255,.24);

    box-shadow:0 10px 30px rgba(0,0,0,.34);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
  }

}

/* =========================================================
ENTITY PAGE
========================================================= */

.entity-hero{
  min-height:72vh;
}

/* =========================================================
CONTACT SIMPLE
========================================================= */

.contact-simple .contact-details a{
  color:#1a1a1a;

  text-decoration:none;

  border-bottom:
    1px solid rgba(200,16,46,.28);

  transition:
    color .25s ease,
    border-color .25s ease;
}

.contact-simple .contact-details a:hover{
  color:#c8102e;

  border-color:#c8102e;
}

/* =========================================================
FOOTER
========================================================= */

.footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;

  padding:42px 60px;

  border-top:1px solid rgba(255,255,255,.06);

  background:#0b0b0b;
}

/* =========================================================
FOOTER LEFT
========================================================= */

.footer-l{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-brand{
  color:rgba(255,255,255,.72);

  font-size:13px;

  letter-spacing:.06em;
}

/* =========================================================
FOOTER CREDIT
========================================================= */

.footer-credit{
  font-size:10px;

  letter-spacing:.14em;

  text-transform:uppercase;

  color:rgba(255,255,255,.34);

  text-decoration:none;

  transition:
    color .3s ease,
    opacity .3s ease;
}

.footer-credit:hover{
  color:rgba(255,255,255,.68);
}

/* =========================================================
FOOTER SOCIAL
========================================================= */

.footer-social{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-social a{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  border:1px solid rgba(255,255,255,.12);

  background:rgba(255,255,255,.03);

  color:rgba(255,255,255,.78);

  font-size:11px;

  letter-spacing:.12em;

  font-weight:600;

  text-decoration:none;

  transition:
    all .3s ease;

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.footer-social a:hover{
  background:rgba(255,255,255,.08);

  border-color:rgba(255,255,255,.26);

  color:#f5ead8;

  transform:translateY(-2px);
}

/* =========================================================
FOOTER MOBILE
========================================================= */

@media (max-width:768px){

  .footer{
    flex-direction:column;
    align-items:flex-start;

    gap:22px;

    padding:34px 22px;
  }

  .footer-social{
    gap:10px;
  }

  .footer-social a{
    width:46px;
    height:46px;

    font-size:12px;
  }

}

/* =========================================================
   NAVBAR PREMIUM — CAFÉ CON LECHE FILMS
========================================================= */

.nav{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:1000;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:22px 42px;

  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.45),
    rgba(0,0,0,.12)
  );

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}


/* =========================================================
   LOGO
========================================================= */

.nav-logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.site-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.site-logo img{
  width:160px;
  height:auto;
  display:block;
  object-fit:contain;
}


/* =========================================================
   MENU DESKTOP
========================================================= */

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}

.nav-links a{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
  text-decoration:none;

  transition:all .3s ease;
}

.nav-links a:hover{
  color:#ffffff;
  opacity:1;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-actions a{
  width:44px;
  height:44px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;

  background:rgba(255,255,255,.05);

  transition:all .3s ease;
}

.nav-actions a:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.32);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){

  .nav{
    padding:14px 18px;

    background:linear-gradient(
      to bottom,
      rgba(0,0,0,.58),
      rgba(0,0,0,.16)
    );

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
  }


  /* ---------- LOGO ---------- */

  .site-logo img{
    width:132px;
  }


  /* ---------- MENU ---------- */

  .nav-links{
    display:none;
  }


  /* ---------- ACTIONS ---------- */

  .nav-actions{
    gap:10px;
  }

  .nav-actions a{
    width:42px;
    height:42px;
  }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width:480px){

  .site-logo img{
    width:122px;
  }

  .nav{
    padding:12px 14px;
  }

  .nav-actions a{
    width:40px;
    height:40px;
  }

}

/* =========================
   HEADER MOBILE
========================= */

@media (max-width:768px){

  .header__inner{
    gap:12px;
  }

  .logo img{
    width:190px;
  }

  .nav__whatsapp{
    min-height:38px;
    padding:0 13px;
    font-size:12px;
  }

}


/* =========================================================
   PRODUCER SECTION — FINAL FIX
========================================================= */

#producer.producer{
  padding:120px 70px;
  background:#faf8f5;
}

#producer .producer-grid{
  width:100%;
  max-width:1400px;
  margin:0 auto;

  display:grid;
  grid-template-columns:58% 42%;
  gap:70px;
  align-items:center;
}

#producer .producer-image img{
  width:100%;
  max-width:none;
  height:auto;
  display:block;
  border-radius:2px;
}

#producer .producer-content{
  color:#1a1a1a;
  max-width:620px;
}

#producer .producer-kicker{
  display:block;
  margin-bottom:34px;

  font-size:10px;
  letter-spacing:.25em;
  text-transform:uppercase;

  color:#c8102e;
}

#producer .producer-content h2{
  margin-bottom:34px;

  font-family:'Playfair Display',serif;
  font-size:clamp(38px,5vw,68px);
  font-weight:400;
  line-height:1.1;

  color:#1a1a1a;
}

#producer .producer-content p{
  margin-bottom:22px;

  font-size:16px;
  line-height:1.95;

  color:#555;
}


/* =========================================================
   ISLAND FILMS LOGO
========================================================= */

#producer .producer-partner{
  margin-top:50px;
  text-align:center;
}

#producer .producer-partner a{
  display:inline-block;
  width:600px;
  max-width:100%;
}

#producer .producer-partner img{
  width:600px !important;
  max-width:100% !important;
  height:auto !important;

  display:block;
  margin:0 auto;

  opacity:1;
}


/* =========================================================
   PRODUCER MOBILE
========================================================= */

@media (max-width:991px){

  #producer.producer{
    padding:90px 24px;
  }

  #producer .producer-grid{
    grid-template-columns:1fr;
    gap:46px;
  }

  #producer .producer-content{
    max-width:none;
  }

  #producer .producer-partner a,
  #producer .producer-partner img{
    width:420px !important;
    max-width:100% !important;
  }

}

@media (max-width:768px){

  #producer .producer-content h2{
    font-size:44px;
  }

  #producer .producer-content p{
    font-size:16px;
    line-height:1.85;
  }

  #producer .producer-partner{
    margin-top:38px;
  }

  #producer .producer-partner a,
  #producer .producer-partner img{
    width:320px !important;
  }

}