/* Tiip Flash — Minimal, high-contrast, mobile-first */
:root{
  --bg:#0b0b0f;
  --panel:#101018;
  --panel2:#0e0e14;
  --text:#ffffff;
  --muted:#c8c8d4;
  --muted2:#9ea0b2;
  --accent:#4682B4;
  --accent-purple:#800080;
  --accent2:#69a4d2;
  --line:rgba(255,255,255,.10);
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --radius:16px;
  --radius-sm:12px;
  --container: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html{color-scheme:dark; scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 75% -10%, rgba(70,130,180,.18), transparent 60%),
              radial-gradient(900px 600px at 0% 20%, rgba(70,130,180,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.65;
  letter-spacing: .01em;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}

.container{
  width:min(var(--container), calc(100% - 2rem));
  margin-inline:auto;
}
.container.narrow{
  max-width: 720px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:var(--accent);
  color:#071017;
  padding:.6rem .9rem;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{left:12px}

/* Header / Nav */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,11,15,.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
  transition: background .28s var(--ease), border-color .28s var(--ease), backdrop-filter .28s var(--ease);
}
.site-header.scrolled{
  background: rgba(0,0,0,.96);
  border-bottom-color: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
}
.brand img{
  height: 40px;
  width: auto;
}
.brand-mark{
  width:34px;
  height:34px;
  border-radius:12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 50%),
    linear-gradient(135deg, rgba(70,130,180,.95), rgba(70,130,180,.25));
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 24px rgba(70,130,180,.12);
}
.brand-name{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-name strong{
  font-size:1.05rem;
  letter-spacing:.10em;
  text-transform: uppercase;
}
.brand-name span{
  font-size:.85rem;
  color:var(--muted2);
}

.nav-toggle{
  appearance:none;
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
  border-radius:12px;
  padding:.55rem .7rem;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  cursor:pointer;
}
.nav-toggle:focus-visible{outline:2px solid rgba(70,130,180,.55); outline-offset:2px}
.nav-toggle .bars{
  width:18px; height:12px; position:relative;
}
.nav-toggle .bars::before,
.nav-toggle .bars::after,
.nav-toggle .bars span{
  content:"";
  position:absolute;
  left:0; right:0;
  height:2px;
  background:rgba(255,255,255,.85);
  border-radius:2px;
}
.nav-toggle .bars::before{top:0}
.nav-toggle .bars span{top:5px}
.nav-toggle .bars::after{bottom:0}

.nav-links{
  position:absolute;
  left:0; right:0;
  top:calc(var(--header-h) + 1px);
  background:rgba(11,11,15,.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
  padding:1rem 0 1.15rem;
  display:none;
}
.nav-links.open{display:block}
.nav-links ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.35rem;
}
.nav-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.9rem 1.05rem;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--text);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  white-space: nowrap;
  transition: color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}
.nav-links a:hover{
  background:rgba(255,255,255,.04);
  color: var(--accent);
}
.nav-links a:focus-visible{outline:2px solid rgba(70,130,180,.55); outline-offset:2px}
.nav-links a[aria-current="page"]{
  border-color: rgba(70,130,180,.35);
  background: linear-gradient(135deg, rgba(70,130,180,.18), rgba(255,255,255,.03));
  color: #a9c7df;
}

@media (min-width: 900px){
  .nav-toggle{display:none}
  .nav-links{
    position:static;
    display:block !important;
    background:transparent;
    border:0;
    padding:0;
  }
  .nav-links ul{
    display:flex;
    gap:.9rem;
    align-items:center;
    justify-content:flex-end;
  }
  .nav-links a{
    padding:.55rem .25rem;
    border:1px solid transparent;
  }
  .nav-links a:hover{
    border-color: transparent;
    background: transparent;
    color: var(--accent);
  }
}

/* Layout */
main{padding: 0 0 4.25rem}
.section{padding: clamp(3rem, 6vw, 5.25rem) 0}
.section.tight{padding: clamp(2.4rem, 4.5vw, 3.5rem) 0}
.section-title{
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing:.06em;
  text-transform: uppercase;
  margin:0 0 1rem;
  color: var(--accent-purple);
}
.section-lead{
  margin:0 0 1.6rem;
  color:var(--muted);
  max-width: 70ch;
  font-size: 1.05rem;
}
.divider{
  border:0;
  border-top:1px solid var(--line);
  margin: 0;
}

/* Hero */
.hero{
  padding: clamp(3.2rem, 8vw, 6rem) 0 clamp(2.2rem, 6vw, 4.25rem);
  position: relative;
  overflow: clip;
}
.hero-grid{
  display:grid;
  gap:1.3rem;
}
.hero h1{
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height:1.05;
  margin:0 0 1rem;
  letter-spacing:-.02em;
  color: var(--accent-purple);
}
.hero p{
  margin:0 0 1.2rem;
  color:var(--muted);
  font-size:1.05rem;
  max-width: 70ch;
}
.hero-title-stack{
  display:grid;
  gap:.45rem;
}
.hero-brandline{
  font-weight:800;
  letter-spacing:.26em;
  text-transform: uppercase;
  font-size: .95rem;
  color: rgba(255,255,255,.88);
}
.hero-display{
  font-weight:800;
  letter-spacing:.12em;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height:1;
  margin: 0 0 1.25rem;
  color: var(--accent-purple);
}
.home-cinematic .site-header{
  position: fixed;
  top:0;
  left:0;
  right:0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.18));
  border-bottom-color: rgba(255,255,255,.08);
}
.home-cinematic .site-header.scrolled{
  background: rgba(0,0,0,.96);
  border-bottom-color: rgba(255,255,255,.14);
}
.home-cinematic main{padding-top:0}
.hero--home{
  min-height: 100svh;
  min-height: 100vh;
  width: 100%;
  background: #000;
  position: relative;
  overflow: clip;
  display:flex;
  align-items:center;
  justify-content:center;
  isolation:isolate;
}
.hero--home::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(120deg, rgba(70,130,180,.16), rgba(70,130,180,0)),
    url("assets/Hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin:center;
  animation: heroZoom 18s ease-in-out infinite alternate;
  z-index:-2;
}
.hero--home::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.6);
  z-index:-1;
}
.hero-content{
  min-height: 100svh;
  min-height: 100vh;
  width: min(100%, 1120px);
  margin-inline:auto;
  padding: calc(var(--header-h) + 1.25rem) 1rem 2rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:1rem;
}
.hero--home .hero-title-stack{
  justify-items:center;
}
.hero--home .hero-brandline{
  letter-spacing:.35em;
}
.hero--home .hero-display{
  margin:0;
  font-size: clamp(2.7rem, 8vw, 6.4rem);
  letter-spacing:.16em;
}
.hero-fade{
  opacity:0;
  transform: translateY(14px);
  animation: fadeUp .9s var(--ease) forwards;
}
.hero-fade.delay-1{animation-delay:.06s}
.hero-fade.delay-2{animation-delay:.22s}
.hero-fade.delay-3{animation-delay:.36s}

.hero::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 10;
  border-radius: 4px;
  animation: heroPulse 6s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.hero-meta{
  display:grid;
  gap:.75rem;
  margin-top:.5rem;
}
.hero-stat{
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding:.9rem .95rem;
  background: rgba(0,0,0,.18);
}
.hero-stat strong{display:block; font-size:1.05rem}
.hero-stat span{color:var(--muted2); font-size:.95rem}

@media (min-width: 900px){
  .hero-grid{
    grid-template-columns: 1.25fr .85fr;
    align-items: start;
    gap: 1.4rem;
  }
  .hero-card{padding: 1.35rem}
}

/* Buttons */
.btn-row{display:flex; gap:.75rem; flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: var(--text);
  transition: transform .18s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  cursor:pointer;
  font-weight:600;
  letter-spacing:.02em;
}
.btn.w-full{width: 100%}
.btn:hover{background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn.primary{
  background: linear-gradient(135deg, rgba(70,130,180,.95), rgba(70,130,180,.35));
  border-color: rgba(70,130,180,.65);
  color:#071017;
}
.btn.primary:hover{background: linear-gradient(135deg, rgba(105,164,210,.95), rgba(70,130,180,.35))}
.btn.ghost{
  background: transparent;
  border-color: rgba(70,130,180,.35);
}
.btn.ghost:hover{border-color: rgba(70,130,180,.6); background: rgba(70,130,180,.08)}

/* Cards & grids */
.grid{
  display:grid;
  gap:1.35rem;
}
.grid.cols-2{grid-template-columns: 1fr}
.grid.cols-3{grid-template-columns: 1fr}
.grid.cols-4{grid-template-columns: 1fr}
@media (min-width: 720px){
  .grid.cols-2{grid-template-columns: repeat(2, 1fr)}
  .grid.cols-3{grid-template-columns: repeat(3, 1fr)}
  .grid.cols-4{grid-template-columns: repeat(2, 1fr)}
}
@media (min-width: 1020px){
  .grid.cols-4{grid-template-columns: repeat(4, 1fr)}
}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding: 1.25rem;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(70,130,180,.25);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.card h3{
  margin:0 0 .35rem;
  letter-spacing:.2px;
  font-size: 1.05rem;
  color: var(--accent-purple);
}
.card-media{
  width:100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow:hidden;
  margin-bottom: 1.15rem;
  background: rgba(255,255,255,.02);
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .55s var(--ease);
}
.card:hover .card-media img{
  transform: scale(1.05);
}
.card p{margin:0; color:var(--muted)}
.pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--accent);
  font-size:.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: .4rem;
}
.card .meta{
  margin-top:.95rem;
  color:var(--muted2);
  font-size:.92rem;
  display:flex;
  justify-content:space-between;
  gap:.75rem;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:.85rem;
}

/* Feature blocks */
.feature{
  border:1px solid rgba(70,130,180,.28);
  background: linear-gradient(135deg, rgba(70,130,180,.12), rgba(255,255,255,.03));
  border-radius: var(--radius);
  padding: 1.35rem;
}
.feature h3{
  margin:0 0 .35rem;
  color: var(--accent-purple);
}
.feature p{margin:0; color:var(--muted)}

/* Forms */
form{margin:0}
.form-grid{display:grid; gap:.9rem}
.field label{
  display:block;
  font-weight:600;
  margin: 0 0 .35rem;
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding:.78rem .85rem;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.12);
  color: var(--text);
  outline:none;
  font-family: inherit;
  font-size: 1rem;
}
.field select{
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}
.field textarea{min-height: 120px; resize: vertical}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(70,130,180,.18);
}
.help{
  margin:.3rem 0 0;
  color: var(--muted2);
  font-size:.92rem;
}
.check{
  display:flex;
  gap:.65rem;
  align-items:flex-start;
  padding:.85rem;
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(0,0,0,.14);
}
.check input{margin-top:.25rem}
.notice{
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding: 1rem;
  color: var(--muted);
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  padding: 1.6rem 0 2.25rem;
  color: var(--muted2);
}
.footer-grid{
  display:grid;
  gap:1rem;
}
.footer-grid a{color:var(--muted)}
.footer-grid a:hover{color:var(--text)}
@media (min-width: 900px){
  .footer-grid{
    grid-template-columns: 1.2fr .8fr;
    align-items:center;
  }
  .footer-right{
    display:flex;
    justify-content:flex-end;
    gap:1rem;
    flex-wrap:wrap;
  }
}

/* Floating WhatsApp */
.whatsapp-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.78rem .95rem;
  border-radius: 999px;
  background: #25D366;
  color: #06160c;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow: 0 14px 30px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.25);
  transition: transform .25s var(--ease), filter .25s var(--ease);
}
.whatsapp-float:hover{filter: brightness(1.03); transform: translateY(-2px)}
.whatsapp-float:focus-visible{outline:3px solid rgba(255,255,255,.55); outline-offset:3px}
.wa-icon{
  width:18px; height:18px;
  display:inline-block;
}

/* Map */
.map{
  width:100%;
  height: 320px;
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}

/* Utility */
.kicker{
  color: var(--accent);
  font-weight:800;
  letter-spacing:.18em;
  text-transform: uppercase;
  font-size:.78rem;
  margin:0 0 .75rem;
}
.nowrap{white-space: nowrap}
.muted{color:var(--muted)}
.text-center{text-align: center}
.mx-auto{margin-inline: auto}
.mb-3{margin-bottom: 1.2rem}
.justify-center{justify-content: center}
.pt-0{padding-top: 0 !important}
.mt-2{margin-top: .75rem}
.mt-3{margin-top: 1.2rem}
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip: rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* Premium media tiles (Work / The Grind) */
.thumb-grid{
  display:grid;
  gap:1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px){
  .thumb-grid{grid-template-columns: repeat(2, 1fr)}
}
.thumb{
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.thumb:hover{transform: translateY(-3px); border-color: rgba(70,130,180,.30)}
.thumb-media{
  position:relative;
  aspect-ratio: 16 / 10;
  overflow:hidden;
  background: rgba(255,255,255,.02);
}
.thumb-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
  opacity:.45;
  transition: opacity .45s var(--ease);
  z-index: 1;
}
.thumb:hover .thumb-media::after{opacity:.65}
.thumb-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .65s var(--ease);
}
.thumb:hover .thumb-media img{transform: scale(1.05)}
.thumb-body{
  padding: 1.1rem 1.25rem 1.25rem;
  display:grid;
  gap:.35rem;
}
.thumb-title{
  margin:0;
  font-size: 1.15rem;
  letter-spacing:.02em;
  color: var(--accent-purple);
}
.thumb-desc{
  margin:0;
  color: var(--muted);
  max-width: 65ch;
}
.thumb-tag{
  justify-self:start;
  margin-top:.25rem;
}

/* Fade-in section reveal */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp{
  to{opacity:1; transform: translateY(0)}
}

@keyframes heroZoom{
  from{transform: scale(1)}
  to{transform: scale(1.08)}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn, .card, .thumb, .whatsapp-float{transition:none}
  .reveal{opacity:1; transform:none}
  .hero-fade{animation:none; opacity:1; transform:none}
  .hero--home::before{animation:none}
  .thumb-media > .thumb-zoom{transition:none}
  .thumb-media::after{transition:none}
}

/* Lightbox (Fullscreen Viewer) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  animation: lightboxFade .3s var(--ease);
}

@keyframes lightboxFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1010;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1010;
  transition: all 0.25s var(--ease);
}

.lightbox-nav:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-item h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

/* Video Embeds */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.video-container:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Featured Work on Home */
.featured-work-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .featured-work-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}


