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

  html {
    scroll-behavior: smooth;
  }
  
  /* =========================
     BASE
     ========================= */
  body {
    padding-top: 80px;
    font-family: Arial, sans-serif;
    color: #111;
    background: #f5f5f5;
  }
  
  /* =========================
     NAVBAR
     ========================= */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
  
    background: #000;
    color: #fff;
  
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    padding: 0 20px;
    z-index: 1000;
  }
  
  /* active page highlight */
  .nav-links a.active {
    color: orange;
    opacity: 1;
  }
  
  /* logo */
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    max-height: 40px;
    width: auto;
  }

/* =========================
   ABOUT TEXT BLOCK
   ========================= */
.about-text-inner {
  max-width: 700px;
}

.about-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #111;
}

/* paragraphs */
.about-text-inner p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* CTA link */
.about-cta {
  display: inline-block;
  margin-top: 20px;

  font-size: 1.1rem;
  font-weight: 600;

  color: orange;
  text-decoration: none;

  transition: color 0.2s ease, transform 0.2s ease;
}

.about-cta:hover {
  color: #6c420f;
  transform: translateX(4px);
}

  /* =========================
     NAV LINKS (DESKTOP)
     ========================= */
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
  
    opacity: 0;
    transform: translateX(20px);
  
    animation: navLinkIn 0.26s ease-out forwards;
  }

  .nav-links a:hover{
    color:#ff6b00;
    opacity: 1;
  }
  
  .nav-links a:nth-child(1) { animation-delay: .25s; }
  .nav-links a:nth-child(2) { animation-delay: .25s; }
  .nav-links a:nth-child(3) { animation-delay: .25s; }
  .nav-links a:nth-child(4) { animation-delay: .25s; }
  
  @keyframes navLinkIn {
    to {
      opacity: 0.8;
      transform: translateX(0);
    }
  }
  
  /* hamburger */
  .hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2000;
  }
  
  /* =========================
     MOBILE MENU
     ========================= */
  @media (max-width: 768px) {
  
    .nav-links {
      position: fixed;
      top: 80px;
      left: 0;
  
      width: 100%;
      height: calc(100vh - 80px);
  
      background: rgba(0,0,0,0.98);
  
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  
      gap: 30px;
  
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
  
      transition: 0.25s ease;
    }
  
    .nav-links.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
  
    .nav-links a {
      font-size: 1.8rem;
      padding: 10px 20px;
    }
  
    .hamburger {
      display: block;
    }
  
    /* hero focal shift */
    .hero img {
      object-position: 75% center;
    }
  }
  
  /* =========================
     HAMBURGER → X
     ========================= */
  .hamburger::before {
    content: "☰";
  }
  
  .hamburger.active::before {
    content: "✕";
  }
  
  /* =========================
     HERO
     ========================= */
  .hero {
    position: relative;
    height: 100vh;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    text-align: center;
    color: #fff;
  
    overflow: hidden;
  }
  
  .hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height:100%;
    object-fit: cover;
    
    filter: brightness(1.15) saturate(1.25) contrast(0.95);
    transform: scale(1.04);
  
    animation: heroImageIn 1.4s ease-out forwards;
  }
  
  @keyframes heroImageIn {
    to {
      filter: brightness(0.6) saturate(1.05) contrast(1.1);
      transform: scale(1);
    }
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
  }
  
  /* =========================
     HERO TEXT ANIMATION
     ========================= */
  .hero h1,
  .hero .subtitle,
  .hero .description {
    opacity: 0;
    transform: translateY(25px);
    

  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    animation: fadeUp 0.9s ease-out 0.3s forwards;
  }
  
  .hero .subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
    animation: fadeUp 0.9s ease-out 0.55s forwards;
  }
  
  .hero .description {
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.65;
    animation: fadeUp 0.9s ease-out 0.8s forwards;
    display: inline-block;
    max-width: 100%;
    padding: 3px 5px;
    transition:
      background-color 0.2s ease,
      color 0.2s ease,
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .hero .description.typewriter-active {
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }

  .hero .description:hover {
    background: orange;
    color: #111;
  }

  .typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    margin-left: 3px;
    vertical-align: -0.14em;
    background: currentColor;
    animation: typewriterCursorBlink 0.78s step-end infinite;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes typewriterCursorBlink {
    0%,
    49% {
      opacity: 1;
    }

    50%,
    100% {
      opacity: 0;
    }
  }
  
  /* CTA links */
  .hero .hero-links {
    margin-top: 60px;
  
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.9s ease-out 1.05s forwards;
  }
  
  .hero .hero-links a {
    color: orange;
    text-decoration: none;
    font-weight: 600;
  }
  
  .hero .hero-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  
  /* =========================
     SECTIONS WRAPPER
     ========================= */
  .container {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
  }
  
  .section {
    margin-bottom: 80px;
  }

  .section + .section::before {
    content: "";
    display: block;
    height: 1.25px;
    width: 100%;
    margin-bottom: 60px;
  
    background: linear-gradient(
      to right,
      transparent,
      #ddd,
      transparent
    );
  }

  .section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  

/* =========================
   BRANDS CAROUSEL
   ========================= */

   .brands-section h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  .carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
  }
  
  .carousel-group {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
    padding-right: 60px;
  }
  
  .carousel img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  }
  
  .carousel img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
  }
  
  /* seamless animation */
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% / 2));
    }
  }
  
  /* pause on hover */
  .carousel:hover .carousel-track {
    animation-play-state: paused;
  }
  
  /* fade edges */
  .carousel::before,
  .carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  .carousel::before {
    left: 0;
    background: linear-gradient(to right, #f5f5f5, transparent);
  }
  
  .carousel::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5, transparent);
  }
  
  @media (max-width: 768px) {
    .carousel-group {
      gap: 40px;
      padding-right: 40px;
    }
  
    .carousel img {
      height: 35px;
    }
  }

  /* =========================
     GRID
     ========================= */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  /* =========================
   CARDS (clean + clickable)
========================= */
.card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;

  background: #fff;
  padding: 10px;
  border-radius: 14px;

  border: 1px solid #eee;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);

  text-align: left;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card-inner {
  text-align: left;
}

.card:hover,
.card.reveal.active:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  border-color: rgba(255, 107, 0, 0.35);
}

.card.is-static {
  cursor: default;
}

.card.is-static:hover,
.card.is-static.reveal.active:hover {
  transform: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-color: #eee;
}

.card img {
  width: 100%;
  display: block;
  border-radius: 10px;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 10px 0;
  text-align: left;
}

.card p {
  color: #555;
  line-height: 1.45;
  text-align: left;
  margin: 0;
}

.card .card-cta,
.card .card-status {
  margin-top: 14px;
  color: #ff6b00;
  font-weight: 700;
}

.card .card-status {
  color: #777;
}

.nav-links a:focus-visible,
.hero .hero-links a:focus-visible,
.see-more a:focus-visible,
.back-home a:focus-visible,
.contact-button:focus-visible,
.about-buttons a:focus-visible,
.about-cta:focus-visible,
.card:focus-visible,
.see-more-btn:focus-visible,
.resume-actions a:focus-visible,
.closing-cta-actions a:focus-visible {
  outline: 3px solid #ff6b00;
  outline-offset: 4px;
}
  
  /* =========================
     SEE MORE
     ========================= */
     .see-more{
      text-align:center;
      margin-top:50px;
    }
    
    .see-more a,
    .back-home a{
      display:inline-block;
      padding:14px 28px;
      border:2px solid #ff6b00;
      border-radius:999px;
      text-decoration:none;
      color:#ff6b00;
      font-weight:600;
      transition:all .2s ease;
    }
    
    .see-more a:hover{
      transform:translateY(-2px);
      background:#ff5a00;
      border-color:#ff5a00;
      color:white;
    }

  .closing-cta {
    text-align: center;
  }

  .closing-cta p {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
    line-height: 1.65;
  }

  .closing-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }

  .closing-cta-actions a {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #ff6b00;
    border-radius: 999px;
    text-decoration: none;
    color: #ff6b00;
    font-weight: 600;
    transition: all .2s ease;
  }

  .closing-cta-actions a:hover {
    transform: translateY(-2px);
    background: #ff5a00;
    border-color: #ff5a00;
    color: white;
  }
  
  /* =========================
     FOOTER
     ========================= */
  .footer {
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
    color: #777;
  }
  
  /* =========================
     ABOUT PAGE
     ========================= */
  .about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  
    padding: 80px 8vw;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    
    padding-top: 50%;
    aspect-ratio: 16 / 9;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .video-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .about-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
  }
  
  .about-buttons a {
    padding: 10px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
  }
  
  .about-buttons a:hover {
    background: orange;
  }
  
  .about-text {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
  }
  

/* =========================
   SECTION TITLE BANNER
   ========================= */

   .section-title-block {
    position: relative;
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
  
    text-align: center;
    color: #fff;
  
    background-image: url("images/parallax.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  
    overflow: hidden;
  }
  
  .section-title-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }
  
  .section-title-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
  }
  
  .section-title-block h1,
  .section-title-block h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  
  .section-title-block p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* anchor offset for fixed navbar */
  #work-experience {
    scroll-margin-top: 80px;
  }
  
  /* mobile fallback */
  @media (max-width: 768px) {
    .section-title-block {
      min-height: 40vh;
      background-attachment: scroll; /* more reliable on mobile */
    }
  
    .section-title-block h1,
    .section-title-block h2 {
      font-size: 2.2rem;
    }
  
    .section-title-block p {
      font-size: 1.05rem;
    }
  }

/* =========================
   EXPERIENCE SECTIONS
========================= */

.experience-section{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:80px;

  max-width:1200px;       /* keeps content centered on page */
  margin:0 auto;          /* centers whole section */
  padding:100px 6vw;

  align-items:center;
}

.experience-section.light{
  background:#f5f5f5;
}

.experience-section.dark{
  background:#e9e9e9;
}

.exp-text{
  max-width:650px;
}

.exp-text h3{
  margin-bottom:14px;
}

.exp-text p{
  color:#555;
  line-height:1.75;
}

.exp-media{
  display:flex;
  justify-content:center;   /* centers image inside column */
  align-items:center;
}

.exp-media img{
  width:100%;
  max-width:420px;
  border-radius:12px;
  display:block;
}
  
  .job-quote {
    margin-left: 80px;
    margin-bottom: 60px;
  }
  
  .job-quote p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .job-quote cite {
    font-style: normal;
    font-size: 1rem;
  }
  


  /* =========================
     REVEAL SYSTEM
     ========================= */
     .reveal {
      opacity: 0;
      transform: translateX(40px); /* was translateY */
      transition: all 0.8s ease;
    }
    
    .reveal.active {
      opacity: 1;
      transform: translateX(0);
    }
  
  /* =========================
     RESPONSIVE
     ========================= */
  @media (max-width: 768px) {
  
    .about-hero,
    .experience-section {
      grid-template-columns: 1fr;
    }
  }

  /* =========================
     Project Frame
     ========================= */


  .project-description{
    max-width: 900px;
    line-height: 1.7;
    font-size: 1.15rem;
    margin: 30px 0 50px 0;
  }

  .snapcode {
    width: 119px;
    display: block;
    margin: 16px auto 0;
    border-radius: 12px;
  }



  .card-inner .snapcode {
    width: 129px;
    height: auto;
    object-fit: contain;
    
  }

  .lens-grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:24px;
  }

  .back-home{
    text-align:center;
    margin:80px 0 60px;
  }
  
  .back-home a:hover{
    transform:translateY(-2px);
    background:#ff6b00;
    color:white;
  }
  
  @media (max-width: 1000px){
    .lens-grid{
      grid-template-columns: repeat(2,1fr);
    }
  }
  
  .mobile-copy {
    display: none;
  }
  
  @media (max-width: 600px) {
    .desktop-copy {
      display: none;
    }
  
    .mobile-copy {
      display: block;
    }
  
    .lens-grid .snapcode {
      display: none;
    }
  }

  /* =========================
   WORK IN PROGRESS PAGE
   ========================= */

.wip-page {
  min-height: 100vh;
  background: #f5f5f5;
}

.wip-container {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.wip-card {
  max-width: 720px;
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 60px 30px;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.wip-card h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  color: #111;
}

.wip-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
}

.wip-gif{
  display:block;
  width:220px;
  max-width:70%;
  margin:35px auto 10px;
  border-radius:14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
  .wip-card {
    padding: 45px 22px;
  }

  .wip-card h1 {
    font-size: 2rem;
  }
}


/* =========================
   NBA / WNBA PROJECT PAGE
   ========================= */

   .nba-project-page h1 {
    margin-bottom: 36px;
  }
  
  .nba-hero-section {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
  }
  
  .nba-video-frame {
    position: relative;
    background: linear-gradient(145deg, #111, #252525);
    padding: 14px;
    border-radius: 38px;
    box-shadow:
      0 22px 45px rgba(0,0,0,0.22),
      inset 0 0 0 1px rgba(255,255,255,0.08);
  }
  
  .nba-video-frame::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 70px;
    height: 5px;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.16);
    border-radius: 999px;
    z-index: 2;
  }
  
  .nba-video-frame::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(255,180,0,0.35), transparent 45%, rgba(255,107,0,0.25));
    z-index: -1;
  }
  
  .nba-video-frame video,
  .nba-video-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 28px;
    background: #000;
  }
  
  .nba-project-copy {
    max-width: 680px;
  }
  
  .nba-project-copy p {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
  }
  
  .nba-lenses-section {
    margin-top: 20px;
  }
  
  .nba-lenses-section h2 {
    margin-bottom: 28px;
  }
  
  /* Mobile layout */
  @media (max-width: 768px) {
    .nba-hero-section {
      grid-template-columns: 1fr;
      gap: 36px;
      margin-bottom: 60px;
    }
  
    .nba-video-frame {
      max-width: 320px;
      margin: 0 auto;
    }
  
    .nba-project-copy p {
      font-size: 1.02rem;
      line-height: 1.65;
    }
  }
  
  /* Keep snapcodes hidden on small screens */
  @media (max-width: 600px) {
    .nba-lenses-section .snapcode {
      display: none;
    }
  }

  .nba-lenses-section .card.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: nbaCardIn 0.7s ease forwards;
}

.nba-lenses-section .card.reveal:nth-child(1) {
  animation-delay: 0.45s;
}

.nba-lenses-section .card.reveal:nth-child(2) {
  animation-delay: 0.6s;
}

.nba-lenses-section .card.reveal:nth-child(3) {
  animation-delay: 0.75s;
}

.nba-lenses-section .card.reveal:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes nbaCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-meta {
  margin-top: 34px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  color: #666;
  font-size: 0.95rem;
}

.contact-meta a,
.contact-meta p {
  margin: 0;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-meta a:hover {
  color: #ff6a00;
}


/* =========================
   MORE AR PAGE
========================= */

.more-ar-page {
  background: #f8f8f8;
  min-height: 100vh;
}

.more-ar-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 8vw 70px;
}

.more-ar-hero {
  max-width: 850px;
  margin-bottom: 80px;
}

.more-ar-hero .eyebrow {
  margin-bottom: 14px;
  color: #f26a21;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.more-ar-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
}

.more-ar-hero p {
  max-width: 760px;
  color: #555;
  font-size: 1.12rem;
  line-height: 1.65;
}


/* =========================
   MORE AR SECTIONS
========================= */

.more-ar-section {
  margin-bottom: 30px;
}

.section-heading {
  margin-top: 54px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section-heading p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}


/* =========================
   MORE AR LENS GRID
========================= */

.more-ar-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(230px,360px));
  justify-content:center;
  gap:26px;
  }

.more-ar-grid .card-inner,
.more-ar-grid .card h3,
.more-ar-grid .card p {
  text-align: center;
}
	  


.lens-preview{
  width:100%;
  aspect-ratio:9 / 16;
  object-fit:cover;
  display:block;
  background:#ddd;
  }


/* =========================
   BACK BUTTON
========================= */

.more-ar-back {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px;
}

.see-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 2px solid #f26a21;
  border-radius: 999px;
  color: #f26a21;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.see-more-btn:hover {
  background: #f26a21;
  color: #fff;
  transform: translateY(-3px);
}


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

.contact-footer {
  padding: 28px 8vw 36px;
  text-align: center;
  background: #111;
  color: #fff;
}

.contact-footer p {
  margin: 0;
  color: #ddd;
  font-size: 0.95rem;
}

.contact-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-footer a:hover {
  color: #f26a21;
}

.contact-footer span {
  margin: 0 12px;
  color: #666;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .more-ar-grid{
    grid-template-columns:repeat(2,minmax(230px,340px));
    justify-content:center;
  }
}

@media (max-width: 700px) {
  .more-ar-wrapper {
    padding: 120px 6vw 60px;
  }

  .more-ar-hero {
    margin-bottom: 60px;
  }

  .more-ar-section {
    margin-bottom: 70px;
  }

  .more-ar-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-footer p {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .contact-footer span {
    display: none;
  }
}


.full-image-break img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  margin-bottom: 50px;
}


/* Hide on mobile */
@media (max-width:768px){
  .full-image-break{
    display:none;
  }
}

.video-embed{

  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
