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

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

body{
  font-family:Arial, sans-serif;
  background:#000;
  color:white;

  /* prevents content hiding under fixed header */
  padding-top:170px;
}

/* =========================
   STICKY HEADER
========================= */

header{
  position:fixed;
  top:0;
  left:0;

  width:100%;

  z-index:9999;

  background:rgba(0,0,0,.92);

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

  border-bottom:1px solid rgba(255,255,255,.08);
}

/* TOP TITLE BAR */

.top-name-bar{
  width:100%;
  padding:20px 5% 16px;
}

/* BIG TITLE */

.top-name{
  margin:0;

  text-align:center;

  color:white;

  font-size:clamp(34px,6vw,82px);

  font-weight:800;

  letter-spacing:.35em;

  text-transform:uppercase;

  line-height:1;
}

/* NAVIGATION */

nav{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;

  gap:42px;

  padding:18px 5% 22px;
}

nav a{
  color:white;

  text-decoration:none;

  font-size:14px;
  font-weight:500;

  letter-spacing:.08em;

  transition:opacity .3s ease;
}

nav a:hover{
  opacity:.7;
}

/* MOBILE */

@media (max-width:768px){

  body{
    padding-top:145px;
  }

  .top-name{
    font-size:34px;
    letter-spacing:.18em;
  }

  nav{
    gap:18px;
    padding:16px 5%;
  }

  nav a{
    font-size:13px;
  }

}
/* =========================
   FULLSCREEN HERO VIDEO
========================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;

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

  overflow: hidden;
  padding: 120px 40px 80px;

  background: #000;
}

/* VIDEO BACKGROUND */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: translate(-50%, -50%);
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.80)
  );
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 88px);
  line-height: 1.1;

  animation:
    blurReveal 2s ease forwards,
    floatText 5s ease-in-out infinite 2s;

  opacity: 0;
}

.hero-description {
  margin: 26px auto;
  max-width: 950px;
  font-size: 20px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* SIDE IMAGES */
.hero-image {
  position: absolute;
  width: 240px;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  z-index: 2;
}

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

.left-image {
  left: 70px;
  top: 90px;
}

.right-image {
  right: 140px;
  top: 90px;
}

/* ANIMATION */
@keyframes blurReveal {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: scale(1.03);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes floatText {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    padding: 120px 6% 70px;
  }

  .hero-video-bg video {
    transform: translate(-50%, -50%) scale(1.18);
  }

  .hero-image {
    display: none;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

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

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}
/* HOMEPAGE MODERN CINEMATIC SECTIONS */

section {
  padding: 90px 7%;
}

section:nth-of-type(even) {
  background: #050505;
}

.eyebrow {
  color: #7ff4f4;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  max-width: 950px;
  margin-bottom: 24px;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: #d8d8d8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 35px;
}

.card,
.media-box {
  background: linear-gradient(145deg, #181818, #0d0d0d);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 34px;
  min-height: 220px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.card h3,
.media-box {
  font-size: 24px;
  font-weight: 800;
}

.card p {
  font-size: 16px;
  margin-top: 10px;
}

.media-box {
  display: flex;
  align-items: end;
  min-height: 280px;
  background:
    linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.15)),
    #151515;
}

.btn,
.hero-buttons a {
  display: inline-block;
  background: #7ff4f4;
  color: #000;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s ease;
}

.btn:hover,
.hero-buttons a:hover {
  transform: translateY(-3px);
  background: white;
}

.pocket-preview {
  background:
    linear-gradient(135deg, rgba(127,244,244,.15), rgba(0,0,0,.92)),
    #050505;
  border-top: 1px solid rgba(127,244,244,.2);
  border-bottom: 1px solid rgba(127,244,244,.2);
}

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

footer {
  background: #020202;
  padding: 60px 7%;
  border-top: 1px solid rgba(255,255,255,.1);
}

footer input {
  padding: 14px;
  border-radius: 999px;
  border: none;
  width: 100%;
  margin-top: 10px;
}

.copyright {
  margin-top: 40px;
  font-size: 14px;
  color: #888;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 900px) {
  .grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 65px 6%;
  }

  h2 {
    font-size: 38px;
  }

  .card,
  .media-box {
    min-height: auto;
    padding: 28px;
  }

  p {
    font-size: 16px;
  }
}
.media-grid a {
  text-decoration: none;
  color: white;
}

.video-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-card::before {
  content: "▶";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #7ff4f4;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}

.video-card span {
  position: relative;
  z-index: 2;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: #7ff4f4;
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* MEDIA THUMBNAILS */

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: end;
  padding: 34px;
  text-decoration: none;
  color: white;
  background-size: cover;
  background-position: center;
  transition: 0.4s ease;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0,0,0,.92),
      rgba(0,0,0,.2));
}

.video-card span {
  position: relative;
  z-index: 2;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-card::before {
  content: "▶";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #7ff4f4;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  z-index: 3;
}

/* THUMBNAIL IMAGES */

.reel-card {
  background-image:
    linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,.1)),
    url("images/reel-thumbnail.jpg");
}

.performance-card {
  background-image:
    linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,.1)),
    url("images/performance-thumbnail.jpg");
}

.masterclass-card {
  background-image:
    linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,.1)),
    url("images/masterclass-thumbnail.jpg");
}
/* POCKET PREVIEW LAYOUT */

.pocket-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}

/* RIGHT SIDE */

.pocket-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO */

.pocket-image img {
  width: 100%;
  max-width: 480px;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  display: block;
  margin-left: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}

/* MOBILE */

@media (max-width: 900px) {

  .pocket-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pocket-image img {
    margin: 0 auto;
    max-width: 280px;
  }

}
/* CONTACT PAGE */

.contact-section {
  padding-top: 180px;
  min-height: 100vh;
}

.contact-eyebrow {
  margin-bottom: 18px;
}

.contact-text {
  margin-bottom: 40px;
  font-size: 20px;
}

.contact-form {
  max-width: 1100px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #121212;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 20px;
  color: white;
  font-size: 16px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7ff4f4;
  box-shadow: 0 0 0 4px rgba(127,244,244,.1);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
  margin-bottom: 30px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

/* MOBILE */

@media (max-width: 768px) {

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

  .contact-section {
    padding-top: 140px;
  }

}
/* CONTACT LAYOUT */

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.contact-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  width: 100%;
  max-width: 430px;
  height: 640px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

/* MOBILE */

@media (max-width: 900px) {

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-image img {
    max-width: 100%;
    height: auto;
  }

}
/* ABOUT PAGE */
/* ABOUT PAGE */

.about-section {
  padding: 140px 7% 100px;
  min-height: 100vh;
}

/* TOP SECTION */

.mosaic-top {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: center;
  margin-top: 30px;
}

.about-content {
  max-width: 760px;
}

.about-content h2 {
  margin-bottom: 28px;
}

.about-content p {
  margin-bottom: 22px;
  line-height: 1.8;
}

/* FEATURE IMAGE */

.feature-image {
  width: 100%;
  height: 620px;
  overflow: hidden;
  border-radius: 32px;
  background: #111;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

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

/* BOTTOM MOSAIC */

.mosaic-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

/* SMALL IMAGES */

.small-image {
  height: 320px;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

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

/* PHILOSOPHY CARD */

.philosophy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

/* RESUME BANNER */

.resume-banner {
  margin-top: 50px;
  padding: 40px;
  border-radius: 30px;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.resume-banner h3 {
  margin-top: 10px;
  font-size: 28px;
}

/* MOBILE */

@media (max-width: 1000px) {

  .mosaic-top {
    grid-template-columns: 1fr;
  }

  .mosaic-bottom {
    grid-template-columns: 1fr;
  }

  .resume-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-image {
    height: 500px;
  }

}

@media (max-width: 600px) {

  .about-section {
    padding: 110px 6% 70px;
  }

  .feature-image,
  .small-image {
    height: 320px;
  }

}
/* =========================
   CREDITS SECTION
========================= */

.credits-section {
  padding-top: 120px;
}

.credits-section h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);

  line-height: .95;

  max-width: 900px;

  margin-top: 18px;
  margin-bottom: 60px;
}

.credits-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;
}

.credit-card {
  background:
    linear-gradient(
      145deg,
      rgba(18,18,18,.95),
      rgba(8,8,8,.95)
    );

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

  border-radius: 28px;

  padding: 42px;

  transition: .35s ease;

  box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.credit-card:hover {
  transform: translateY(-8px);

  border-color: rgba(125,245,255,.45);

  box-shadow:
    0 30px 80px rgba(0,0,0,.45);
}

.credit-card span {
  color: #7df5ff;

  text-transform: uppercase;

  letter-spacing: 3px;

  font-size: .85rem;

  display: block;

  margin-bottom: 18px;
}

.credit-card h3 {
  font-size: 2rem;

  line-height: 1.05;

  margin-bottom: 14px;
}

.credit-card p {
  color: rgba(255,255,255,.72);

  line-height: 1.7;

  font-size: 1rem;
}

/* MOBILE */

@media (max-width: 900px) {

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

  .credits-section {
    padding-top: 80px;
  }

  .credit-card {
    padding: 32px;
  }

  .credit-card h3 {
    font-size: 1.6rem;
  }

}
/* =========================
   SERVICES PAGE
========================= */

.services-section {
  padding: 150px 7% 100px;
}

.services-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
}

/* LEFT SIDE */

.services-left h2 {
  max-width: 700px;
}

.services-intro {
  max-width: 760px;
  margin-top: 20px;
  margin-bottom: 45px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

/* GRID */

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

/* CARDS */

.service-card {
  background: linear-gradient(
    180deg,
    rgba(20,20,20,.95),
    rgba(10,10,10,.95)
  );

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

  border-radius: 28px;

  padding: 34px;

  transition: .4s ease;

  min-height: 220px;
}

.service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(122, 239, 245, .3);

  box-shadow: 0 25px 60px rgba(0,0,0,.45);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

/* REMOVE NUMBERS */

.service-card span {
  display: none;
}

/* RIGHT IMAGE */

.services-image {
  position: sticky;
  top: 120px;
}

.services-image img {
  width: 100%;
  height: 720px;

  object-fit: cover;
  object-position: center top;

  border-radius: 34px;

  display: block;

  box-shadow:
    0 40px 90px rgba(0,0,0,.45);
}

/* =========================
   BOOKING SECTION
========================= */

.booking-section {
  padding: 30px 7% 120px;
}

.booking-wrapper {
  background: linear-gradient(
    180deg,
    rgba(18,18,18,.98),
    rgba(10,10,10,.98)
  );

  border-radius: 38px;

  padding: 60px;

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

/* MOBILE */

@media (max-width: 1100px) {

  .services-hero {
    grid-template-columns: 1fr;
  }

  .services-image {
    position: relative;
    top: 0;
  }

  .services-image img {
    height: 520px;
  }

}

@media (max-width: 768px) {

  .services-section {
    padding: 130px 6% 80px;
  }

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

  .booking-wrapper {
    padding: 35px 24px;
  }

  .services-image img {
    height: 420px;
  }

}
/* MEDIA GALLERY BUTTONS */

.media-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.media-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 24px;
  margin-top: 28px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);

  background: rgba(255,255,255,0.06);
  color: white;

  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;

  transition: all 0.3s ease;
}

.media-btn:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .media-btn {
    width: 100%;
  }
}
/* =========================
   FULL WIDTH BRAND HEADER
========================= */

/* FULL WIDTH BRAND HEADER FOR ALL PAGES */

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: #000;
}

.top-name-bar {
  width: 100%;
  background: #000;
  padding: 22px 5% 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-name {
  margin: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: clamp(34px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  line-height: 1;
}

.main-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  background: #000;
  padding: 20px 5%;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.main-nav a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .top-name {
    font-size: 34px;
    letter-spacing: 0.18em;
  }

  .main-nav {
    gap: 18px;
    padding: 18px 5%;
  }

  .main-nav a {
    font-size: 13px;
  }
}
/* FINAL HEADER FREEZE FIX */

header,
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: #000 !important;
}

body {
  padding-top: 170px !important;
}

@media (max-width: 900px) {
  header,
  .site-header {
    position: fixed !important;
  }

  body {
    padding-top: 145px !important;
  }
}
/* =========================
   MOBILE HERO CUT-OFF FIX
========================= */

@media (max-width: 900px) {

  body {
    padding-top: 0 !important;
  }

  .site-header,
  header {
    position: sticky !important;
    top: 0 !important;
  }

  .hero {
    min-height: 100svh !important;
    padding-top: 40px !important;
    padding-bottom: 90px !important;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-video-bg video {
    object-fit: cover;
    object-position: center top;
    transform: translate(-50%, -50%) scale(1.03) !important;
  }

}
/* =========================
   SERVICES SECTION BACKGROUND
========================= */

.services-preview-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(0,0,0,.72),
      rgba(0,0,0,.82)
    ),
    url("images/aboutbackground.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* =========================
   SERVICES BACKGROUND
========================= */

.services-background {
  position: relative;

  background:
    url("images/services.JPG");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* DARK OVERLAY */

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

  background:
    linear-gradient(
      rgba(0,0,0,.72),
      rgba(0,0,0,.88)
    );

  z-index: 1;
}

/* CONTENT ABOVE BACKGROUND */

.services-hero {
  position: relative;
  z-index: 2;
}

/* GLASSMORPHISM CARDS */

.service-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  background:
    linear-gradient(
      145deg,
      rgba(18,18,18,.72),
      rgba(8,8,8,.72)
    );

  border: 1px solid rgba(255,255,255,.08);
}
/* =========================
   SERVICES PREVIEW BACKGROUND
========================= */

.services-preview-section {
  position: relative;

  background:
    linear-gradient(
      rgba(0,0,0,.78),
      rgba(0,0,0,.88)
    ),
    url("images/aboutbackground.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;

  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* GLASS EFFECT CARDS */

.services-preview-section .card {
  background:
    linear-gradient(
      145deg,
      rgba(18,18,18,.78),
      rgba(8,8,8,.78)
    );

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

  border: 1px solid rgba(255,255,255,.08);
}
/* =========================
   FINAL MOBILE VIDEO FIX
========================= */

@media (max-width: 900px) {

  header,
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
  }

  body {
    padding-top: 0 !important;
  }

  .hero {
    min-height: 100svh !important;
    padding: 40px 6% 90px !important;
  }

  .hero-video-bg {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
  }

  .hero-video-bg video {
    display: block !important;
    opacity: 1 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    transform: translate(-50%, -50%) scale(1.08) !important;
  }

  .hero-overlay {
    background: linear-gradient(
      rgba(0,0,0,.45),
      rgba(0,0,0,.78)
    ) !important;
  }

}
/* =========================
   SUMMER CLASS PROMO
========================= */

.services-image {
  position: relative;

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

.services-image img {
  width: 100%;
  max-width: 560px;

  border-radius: 32px;

  object-fit: cover;

  box-shadow:
    0 30px 80px rgba(0,0,0,.45);
}

/* BUTTON */

.summer-class-btn {
  position: absolute;

  bottom: 30px;
  left: 50%;

  transform: translateX(-50%);

  background: #7ff4f4;
  color: black;

  text-decoration: none;

  padding: 16px 30px;

  border-radius: 999px;

  font-weight: 800;

  font-size: 15px;

  white-space: nowrap;

  transition: .3s ease;

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

.summer-class-btn:hover {
  background: white;

  transform:
    translateX(-50%)
    translateY(-3px);
}

/* MOBILE */

@media (max-width: 900px) {

  .services-image {
    margin-top: 30px;
  }

  .summer-class-btn {
    width: 82%;
    text-align: center;
  }

}
















































/* =========================
   FULL WEBSITE MOBILE FIX
   Add to bottom of style.css
========================= */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
}

/* NAV MOBILE FIX */
@media (max-width: 900px) {
  header {
    position: fixed;
  }

  nav {
    flex-direction: column;
    gap: 18px;
    padding: 18px 20px;
  }

  .logo {
    width: 95px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    padding: 0;
  }

  nav a {
    font-size: 14px;
  }
}

/* GENERAL PHONE SCALING */
@media (max-width: 768px) {
  section,
  .section,
  .about-section,
  .services-section,
  .contact-section,
  .booking-section,
  .credits-section {
    padding-left: 6%;
    padding-right: 6%;
  }

  h1,
  .hero h1 {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.05;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
    line-height: 1.65;
  }

  .btn,
  .hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 15px 22px;
  }
}

/* HOME HERO MOBILE */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    height: auto;
    padding: 90px 6% 60px;
    flex-direction: column;
  }

  .hero-content {
    margin-top: 0;
    max-width: 100%;
  }

  .hero-image {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 22px auto 0;
    left: auto;
    right: auto;
    top: auto;
  }

  .hero-image img {
    height: auto;
    object-fit: cover;
  }

  .left-image,
  .right-image {
    left: auto;
    right: auto;
    top: auto;
  }
}

/* GRID FIXES */
@media (max-width: 900px) {
  .grid,
  .cards,
  .media-grid,
  .services-grid,
  .credits-grid,
  .footer-grid,
  .mosaic-bottom,
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .card,
  .media-box,
  .service-card,
  .credit-card {
    width: 100%;
    padding: 26px;
  }
}

/* MEDIA PAGE FIX */
@media (max-width: 768px) {
  .video-card {
    min-height: 260px;
    padding: 24px;
  }

  .video-card span {
    font-size: 24px;
  }

  .video-card::before {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }
}

/* ABOUT PAGE FIX */
@media (max-width: 900px) {
  .mosaic-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .feature-image,
  .small-image {
    height: auto;
  }

  .feature-image img,
  .small-image img {
    height: auto;
  }

  .resume-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* SERVICES PAGE FIX */
@media (max-width: 900px) {
  .services-hero {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .services-image {
    position: relative;
    top: auto;
  }

  .services-image img {
    height: auto;
  }

  .booking-wrapper {
    padding: 28px 20px;
  }
}

/* GOOGLE CALENDAR SCHEDULER */

#google-calendar-button {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}

.book-btn {
  border-radius: 12px;
}

.scheduler-section {
  margin-top: 50px;
}

.scheduler-title {
  margin-bottom: 20px;
  color: white;
  font-size: 1.2rem;
}


/* MOBILE RESPONSIVE FIXES */

@media (max-width: 900px) {

  /* ABOUT PAGE */

  .mosaic-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .feature-image,
  .small-image {
    height: auto;
  }

  .feature-image img,
  .small-image img {
    height: auto;
  }

  .resume-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* SERVICES PAGE */

  .services-hero {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .services-image {
    position: relative;
    top: auto;
  }

  .services-image img {
    height: auto;
  }

  .booking-wrapper {
    padding: 28px 20px;
  }

  /* CONTACT PAGE */

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-image img {
    height: auto;
  }

  input,
  textarea,
  button {
    font-size: 16px;
  }

  /* GOOGLE BUTTON MOBILE ALIGNMENT */

  #google-calendar-button {
    justify-content: center;
  }

}





/* POCKET PAGE FIX */
@media (max-width: 900px) {
  .pocket-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .pocket-image img {
    max-width: 100%;
    height: auto;
  }
}

/* EXTRA SMALL PHONES */
 @media (max-width: 480px) {

  .top-name {
    font-size: 38px !important;
    letter-spacing: 0.16em !important;
  }

  .main-nav {
    gap: 16px !important;
    padding: 18px 5% !important;
  }

}

  section,
  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .hero {
    padding-top: 70px;
  }

  .card,
  .media-box,
  .service-card,
  .credit-card,
  .booking-wrapper {
    border-radius: 20px;
  }
}