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

@font-face {
  font-family: Gambetta;
  src: url("https://cdn.prod.website-files.com/68599ae5116bfda9c17727ac/68599ae5116bfda9c1772844_Gambetta-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  --global--heading-font-family: "Anton SC", sans-serif;
  --global--body-font-family: Inter, sans-serif;
  --global--body-font-size: 18px;
  --global--border-width: 2px;
  --global-colors--body-background: #ffffff;
  --global-colors--background-default: white;
  --global-colors--background-muted: #f8f8f8;
  --global-colors--background-muted-2: #eee;
  --global-colors--background-primary: #0e1011;
  --global-colors--background-primary-muted: #181a1b;
  --global-colors--text-default: #0e1011;
  --global-colors--text-inverse: white;
  --global-colors--text-muted: #0e101199;
  --global-colors--text-muted-inverse: #ffffffb3;
  --global-colors--border-default: #e8eded;
  --global-colors--border-inverse: #262829;
  --text-meta--font-family: Gambetta, sans-serif;
  --text-meta--font-size: 20px;
  --text-meta--letter-spacing: 0px;
  --navbar-item--font-family: var(--global--body-font-family);
  --navbar-item--font-size: 1.25vw;
  --navbar-item--letter-spacing: 0px;
  --navbar-item-default--text-color: var(--global-colors--text-default);
  --navbar-item-default--text-color-hover: var(--global-colors--text-default);
  --navbar-item-default--border-color: var(--navbar-item-default--text-color);
  --navbar-item--border-width: var(--global--border-width);
  --button-text--font-family: var(--global--body-font-family);
  --button-text--font-size: 1.25vw;
  --button-text-default--text-color: var(--global-colors--text-default);
  --button-text-default--border-color: var(--button-text-default--text-color);
  --button-text-inverse--text-color: var(--global-colors--text-inverse);
  --button-text-inverse--border-color: var(--button-text-inverse--text-color);
}

*, *::before, *::after { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { height: 100%; }
body { margin: 0; color: #333; font-family: system-ui, sans-serif; font-size: 1rem; line-height: 1.5; background-color: #fff; }
a { color: inherit; background-color: transparent; text-decoration: none; }
a:active, a:hover { outline: 0; }
img { border: 0; vertical-align: middle; max-width: 100%; display: inline-block; }
h1,h2,h3,h4,h5,h6 { margin: 0; padding: 0; font-weight: bold; }
p { margin: 0; }
ul, ol { margin: 0; padding-left: 1.25rem; }

.body {
  background-color: var(--global-colors--body-background);
  font-family: var(--global--body-font-family);
  color: var(--global-colors--text-default);
  font-size: var(--global--body-font-size);
  font-weight: 400;
  line-height: 160%;
}
.page-wrapper { position: relative; }
.w-inline-block { max-width: 100%; display: inline-block; }
.overflow-hidden { overflow: hidden; }

/* TYPOGRAPHY */
h1 { font-family: var(--global--heading-font-family); text-transform: uppercase; font-size: 4.5vw; font-weight: 400; line-height: 110%; margin: 0; }
h2 { font-family: var(--global--heading-font-family); text-transform: uppercase; font-size: 3.5vw; font-weight: 400; line-height: 110%; margin: 0; }
h3 { font-family: var(--global--heading-font-family); text-transform: uppercase; font-size: 2.25vw; font-weight: 400; line-height: 120%; margin: 0; }

.heading-style-large { font-family: var(--global--heading-font-family); text-transform: uppercase; font-size: 12vw; font-weight: 400; line-height: 100%; }
.heading-style-h2 { font-family: var(--global--heading-font-family); text-transform: uppercase; font-size: 6vw; font-weight: 400; line-height: 100%; }
.heading-style-small { font-family: var(--global--heading-font-family); text-transform: uppercase; font-size: 8vw; font-weight: 400; line-height: 100%; }
.heading-style-xxlarge { font-family: var(--global--heading-font-family); text-transform: uppercase; font-size: 14vw; font-weight: 400; line-height: 100%; }
.heading-alt-h2 { font-size: 3vw; font-weight: 600; line-height: 120%; }
.heading-alt-h3 { font-family: var(--global--body-font-family); text-transform: none; font-size: 2.5vw; font-weight: 600; line-height: 120%; }
.heading-alt-h4 { font-family: var(--global--body-font-family); text-transform: none; font-size: 2vw; font-weight: 600; line-height: 120%; }
.heading-alt-h5 { font-family: var(--global--body-font-family); text-transform: none; font-size: 1.75vw; font-weight: 600; line-height: 140%; }
.heading-alt-small { font-family: var(--global--body-font-family); text-transform: none; font-size: 5vw; font-weight: 600; line-height: 110%; }

.text-meta { font-family: var(--text-meta--font-family); font-size: var(--text-meta--font-size); letter-spacing: var(--text-meta--letter-spacing); font-style: italic; font-weight: 500; line-height: 130%; }
.text-color-muted { color: var(--global-colors--text-muted); padding-top: 12px; padding-bottom: 35px; padding-left: 0; text-decoration: none; }
.text-color-muted-inverse { color: var(--global-colors--text-muted-inverse); }
.text-rich-text { font-size: 18px; line-height: 180%; }
.text-rich-text.text-color-muted p { color: var(--global-colors--text-muted); }

.max-width-large { width: 100%; max-width: 50rem; }
.max-width-huge { width: 100%; max-width: 87.5rem; }
.max-width-xhuge { width: 100%; max-width: 100rem; }

/* MARGINS */
.margin-bottom { margin-top: 0; margin-left: 0; margin-right: 0; }
.margin-large { margin-bottom: 3rem; margin-top: 0; margin-left: 0; margin-right: 0; }
.margin-medium { margin-bottom: 2rem; margin-top: 0; margin-left: 0; margin-right: 0; }
.margin-small { margin-bottom: 1rem; margin-top: 0; margin-left: 0; margin-right: 0; }
.margin-tiny { margin-bottom: .125rem; margin-top: 0; margin-left: 0; margin-right: 0; }
.margin-xsmall { margin-bottom: .5rem; margin-top: 0; margin-left: 0; margin-right: 0; }
.margin-xxsmall { margin-bottom: .25rem; margin-top: 0; margin-left: 0; margin-right: 0; }
.margin-xhuge { margin-bottom: 8rem; margin-top: 0; margin-left: 0; margin-right: 0; }

/* HEADER - large (show-tablet wrapper) */
.header { z-index: 1000; background-color: var(--global-colors--background-default); position: fixed; inset: 0% 0% auto; }
.show-tablet { display: none; }

/* NAVBAR large */
.navbar { z-index: 2; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; justify-content: space-between; padding: 2rem 6vw 1.5rem; gap: 1rem; }
.navbar-logo, .navbar-logo.w--current { display: flex; }
.navbar-logo-image { height: 36px; }
.navbar-left { display: flex; align-items: center; gap: 3rem; position: relative; }
.navbar-right { display: flex; align-items: center; justify-content: flex-end; gap: 1.5rem; }
.navbar-menu { display: flex; align-items: center; gap: 3rem; }
.navbar-menu-item { font-family: var(--navbar-item--font-family); color: var(--navbar-item-default--text-color); font-size: var(--navbar-item--font-size); letter-spacing: var(--navbar-item--letter-spacing); font-weight: 600; line-height: 100%; text-decoration: none; position: relative; }
.navbar-menu-item:hover { color: var(--navbar-item-default--text-color-hover); }
.navbar-item-line { width: 0; height: var(--navbar-item--border-width); background-color: var(--navbar-item-default--border-color); margin-right: 4px; position: absolute; bottom: -2px; left: 0; transition: width 0.3s; }
.navbar-menu-item:hover .navbar-item-line { width: 100%; }

/* HEADER SMALL */
.header-small { z-index: 101; position: absolute; inset: 0% 0% auto; }
.navbar-small { z-index: 2; display: grid; grid-template-columns: .8fr 1fr; align-items: center; justify-content: space-between; padding: 2rem 6vw 1.5rem 4vw; gap: 0; }
.navbar-small-left { display: flex; align-items: center; gap: 3rem; position: relative; }
.navbar-small-right { display: flex; align-items: center; justify-content: flex-end; padding-left: 0; gap: 1.5rem; }
.navbar-small-menu { display: flex; align-items: center; gap: 1.5rem; }


.header-small .navbar-logo-image { filter: invert(1); }
.header-small.light-bg .navbar-logo-image { filter: invert(0); }

/* BUTTON TEXT (Contact) */
.button-text { font-family: var(--button-text--font-family); color: var(--button-text-default--text-color); font-size: var(--button-text--font-size); font-weight: 600; line-height: 120%; text-decoration: none; display: inline-block; position: relative; }
.button-text-inner { display: flex; align-items: center; gap: 8px; overflow: hidden; }
.button-text-line { width: 100%; height: var(--global--border-width); background-color: var(--button-text-default--border-color); position: absolute; bottom: -2px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.button-text:hover .button-text-line { transform: scaleX(1); }

/* MOBILE TOGGLE */
.mobile-menu-toggle { cursor: pointer; display: none; flex-flow: column; justify-content: center; align-items: center; width: 30px; height: 30px; }
.mobile-menu-toggle-inner { cursor: pointer; width: 100%; height: 10px; display: block; position: relative; }
.menu-toggle-line { width: 100%; height: var(--global--border-width); background-color: var(--global-colors--text-default); position: absolute; }
.menu-toggle-line.top { top: 0; }
.menu-toggle-line.bottom { bottom: 0; }

/* MOBILE MENU */
.mobile-menu { z-index: 999; background-color: var(--global-colors--background-default); width: 100vw; height: 100dvh; display: none; position: fixed; inset: 0%; overflow: hidden; }
.mobile-menu.open { display: block; }
.mobile-menu-wrapper { display: flex; flex-flow: column; justify-content: center; align-items: stretch; width: 100%; height: 100%; padding-top: 96px; }
.mobile-menu-nav { display: flex; flex-flow: column; gap: 1rem; padding: 0 2.5rem; }
.mobile-menu-nav-item { color: var(--global-colors--text-default); text-decoration: none; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.menu-nav-item-text { text-transform: uppercase; font-size: 2rem; font-weight: 600; line-height: 100%; }

/* PAGE LOADER */
.pageloader { z-index: 9999; background-color: var(--global-colors--background-primary); width: 100vw; height: 100dvh; color: var(--global-colors--text-inverse); display: flex; justify-content: flex-end; align-items: flex-end; padding: 5vw 6vw; position: fixed; inset: 0%; overflow: hidden; transition: transform 0.6s cubic-bezier(0.77,0,0.175,1); }
.pageloader.loaded { transform: translateY(-100%); }
.pageloader-heading { font-family: var(--global--heading-font-family); text-align: right; text-transform: uppercase; font-size: 12vw; font-weight: 400; line-height: 100%; transform: translateY(-101%); transition: transform 0.6s cubic-bezier(0.77,0,0.175,1); }
.pageloader.loaded .pageloader-heading { transform: translateY(0); }

/* MAIN */
.main-wrapper { position: relative; opacity: 1; }

/* HOME HERO */
.section-home-hero { background-color: var(--global-colors--background-default); position: relative; }
.home-hero-grid { display: grid; grid-template-columns: .8fr 1fr; align-items: start; gap: 0; }
.home-hero-image { object-fit: cover; width: 100%; height: 100vh; position: sticky; top: 0; }
.home-hero-right { display: flex; flex-flow: column; }
.home-hero-right-top { display: flex; flex-flow: column; justify-content: space-between; height: 100vh; padding: 10vw 6vw 4vw; }
.home-hero-right-bottom { display: flex; flex-flow: column; justify-content: space-between; padding: 6vw 6vw 8vw; align-items: flex-start; }

/* HOME PROJECTS */
.section-home-projects { background-color: var(--global-colors--background-muted); position: relative; }
.section-top { display: flex; flex-flow: column; gap: 8vw; background-color: var(--global-colors--background-default); padding: 10vw 6vw 6vw; }
.section-top.muted { background-color: var(--global-colors--background-muted); }
.section-top-heading { display: flex; justify-content: space-between; align-items: center; }
.home-projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.project-preview { background-color: var(--global-colors--background-muted); }
.project-preview-image-wrapper { z-index: 1; flex: 1; display: block; position: relative; overflow: hidden; cursor: pointer; }
.project-preview-image-wrapper img { object-fit: cover; width: 100%; aspect-ratio: 4/3; display: block; transition: transform 0.6s ease; }
.project-preview-image-wrapper:hover img { transform: scale(1.04); }
.view-button-wrapper { z-index: 10; display: flex; justify-content: center; align-items: center; position: absolute; inset: 0%; }
.view-button { z-index: 10; background-color: var(--global-colors--background-primary); width: 54px; height: 54px; color: var(--global-colors--text-inverse); border-radius: 100%; display: flex; justify-content: center; align-items: center; opacity: 0; transform: scale(0.7); transition: opacity 0.2s, transform 0.2s; }
.project-preview-image-wrapper:hover .view-button { opacity: 1; transform: scale(1); }
.view-button-icon { width: 30px; height: 30px; display: flex; }
.project-preview-content { display: flex; justify-content: space-between; align-items: center; padding: 1.5vw 2vw; text-decoration: none; }
.text-gap { display: flex; align-items: center; gap: 2px; }

/* HOME SERVICES */
.section-home-services { position: relative; }
.home-services-item { display: grid; grid-template-columns: .8fr 1fr; align-items: start; position: relative; overflow: hidden; background-color: var(--global-colors--background-muted); }
.home-services-item.odd { background-color: var(--global-colors--background-default); grid-template-columns: 1fr .8fr; }
.home-services-item-content { display: flex; flex-flow: column; justify-content: space-between; height: 100vh; padding: 6vw 6vw 16vw; }
.home-services-item-image { width: 100%; height: 100vh; position: relative; overflow: hidden; }
.home-services-item-image .image-cover-parallax { object-fit: cover; width: 110%; height: 110%; position: absolute; top: -5%; left: -5%; }
.home-services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 3rem; max-width: 800px; }
.image-cover-parallax { object-fit: cover; width: 100%; height: 100%; overflow: hidden; }

/* WORK/PROJECTS PAGE — full-height stacked */
.section-work-projects { background-color: var(--global-colors--background-default); }
.section-work-projects-top { padding: 12vw 6vw 6vw; }
.work-projects-grid { display: flex; flex-flow: column; gap: 0; }
.project-preview-large { position: relative; overflow: hidden; }
.project-preview-large-image-wrapper { height: 100vh; display: block; position: relative; overflow: hidden; cursor: pointer; }
.project-preview-large-image-wrapper img { object-fit: cover; width: 110%; height: 110%; position: absolute; top: -5%; left: -5%; display: block; transition: transform 0.6s ease; }
.project-preview-large-image-wrapper:hover img { transform: translate(-5%, -5%) scale(1.04); }
.project-preview-large-heading { z-index: 2; color: #fff; position: absolute; inset: auto auto 6vw 6vw; overflow: hidden; }

/* PROJECT DETAIL PAGES */
.section-project-hero { background-color: var(--global-colors--background-default); }
.section-project-hero-top { padding: 12vw 6vw 5vw; }
.project-hero-meta { display: grid; grid-template-columns: auto auto 1fr; gap: 8vw; align-items: flex-start; }
.project-hero-meta-item { display: flex; flex-flow: column; gap: 0.5rem; }
.project-hero-image-wrapper { overflow: hidden; }
.project-hero-image-wrapper img { width: 100%; display: block; }

/* PROJECT ABOUT SECTION (two-column: big heading left, text right) */
.section-project-about { background-color: var(--global-colors--background-default); }
.service-item-content { display: grid; grid-template-columns: .55fr 1fr; gap: 6rem; align-items: start; padding: 5vw 6vw 6vw; }
.service-item-content-left { position: sticky; top: 3rem; }
.service-item-content-right { display: flex; flex-flow: column; gap: 2rem; }

/* PROJECT GALLERY */
.section-project-gallery { background-color: var(--global-colors--background-default); padding-bottom: 1rem; }
.project-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 0 6vw 6vw; }
.project-gallery-image-wrapper { position: relative; overflow: hidden; display: block; }
.project-gallery-image-wrapper img { width: 100%; display: block; object-fit: cover; }
.lightbox-link { display: block; width: 100%; }

/* MOTION GRAPHICS PAGE */
.section-studio-hero { background-color: var(--global-colors--background-default); }
.studio-hero-top { padding: 12vw 6vw 6vw; }

/* Background video containers — stacked vertically, full width */
.background-video-2 {
  box-sizing: border-box;
  width: 100%;
  height: 0;
  padding-top: 80%; /* 5:4 */
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 2px;
}
.background-video-3 {
  width: 100%;
  height: 0;
  padding-top: 80%; /* 5:4 */
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 2px;
}
.background-video-2 video,
.background-video-3 video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.w-background-video--control {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
}
.background-video-2:hover .w-background-video--control,
.background-video-3:hover .w-background-video--control { opacity: 1; }
.w-background-video--control img { width: 16px; height: 16px; filter: invert(1); }
.container-2 { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 6vw 6vw; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; align-items: start; }

/* ABOUT PAGE */
.section-studio-hero .studio-hero-top { padding: 12vw 6vw 4vw; }
.image-wrapper { display: block; position: relative; overflow: hidden; }
.image-wrapper img { width: 100%; display: block; }

/* CONTACT PAGE */
.section-contact { display: grid; grid-template-columns: .8fr 1fr; gap: 0; background-color: var(--global-colors--background-default); }
.contact-image-wrapper { overflow: hidden; }
.contact-image-wrapper img { width: 100%; height: 100vh; object-fit: cover; position: sticky; top: 0; display: block; }
.contact-right { display: flex; flex-flow: column; justify-content: flex-start; height: 100vh; padding: 10vw 6vw 4vw; overflow-y: auto; }

/* FORM */
.form-wrapper { margin-bottom: 0; }
.form-row-1-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1rem; }
.form-field-wrapper { margin-bottom: 1.5rem; }
.form-input { background: transparent; border: none; border-bottom: var(--global--border-width) solid var(--global-colors--border-default); color: var(--global-colors--text-default); font-family: var(--global--body-font-family); font-size: 16px; padding: 1rem 0; width: 100%; outline: none; display: block; resize: none; transition: border-color 0.2s; }
.form-input:focus { border-bottom-color: var(--global-colors--background-primary); }
.form-input::placeholder { color: var(--global-colors--text-muted); }
.form-input.is-text-area { min-height: 120px; }
.contact-form-button-wrapper { margin-top: 1rem; }
.button.primary { font-family: var(--global--body-font-family); font-size: 1vw; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; background: var(--global-colors--background-primary); color: var(--global-colors--text-inverse); border: none; padding: 1rem 2rem; cursor: pointer; transition: background 0.2s; -webkit-appearance: button; }
.button.primary:hover { background: #333; }
.form-message-success { color: #1fac71; background-color: #1fac710d; border: 1px solid #1fac7133; padding: 1rem; display: none; margin-top: 1rem; }
.form-message-error { color: #ac1f47; background-color: #ac1f470d; border: 1px solid #ac1f4733; padding: 1rem; display: none; margin-top: 1rem; }
.w-form-done { display: none; }
.w-form-fail { display: none; }

/* FOOTER */
.footer { background-color: var(--global-colors--background-primary); min-height: 100vh; color: var(--global-colors--text-inverse); display: flex; flex-flow: column; justify-content: space-between; padding: 6vw 6vw 2vw; position: relative; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 3rem; }
.footer-column { display: flex; flex-flow: column; gap: 2rem; align-items: flex-start; }
.footer-bottom { display: flex; flex-flow: column; gap: 3rem; }
.footer-bottom-grid { display: flex; justify-content: center; align-items: flex-start; }

/* NAV ITEMS */
.nav { display: flex; flex-direction: column; gap: 1.25rem; padding-left: 0; list-style-type: none; }
.nav-item { font-family: var(--global--body-font-family); color: var(--global-colors--text-default); font-size: 1.25vw; font-weight: 600; text-decoration: none; position: relative; display: flex; align-items: center; margin-bottom: 0; padding-left: 0; }
.nav-item.inverse { color: var(--global-colors--text-inverse); }
.nav-item-line { width: 0; height: var(--global--border-width); background-color: var(--global-colors--text-default); position: absolute; bottom: -2px; left: 0; transition: width 0.3s; }
.nav-item-line.inverse { background-color: var(--global-colors--text-inverse); }
.nav-item:hover .nav-item-line { width: calc(100% - 4px); }

/* TOGGLE */
.toggle-color { display: none; z-index: 999; background-color: background-color: var(--global-colors--background-primary-muted); cursor: pointer; border-radius: 500px; display: flex; justify-content: flex-start; align-items: center; width: 70px; height: 40px; padding: 10px; position: fixed; bottom: 2rem; left: 2rem; }
.toggle-color-dot { background-color: var(--global-colors--background-default); border-radius: 50%; width: 20px; height: 20px; }
.dark-mode { display: none; }

/* NAV LOGO — large fixed header is on white: black logo */
.show-tablet .light-mode { display: block; }
.show-tablet .dark-mode { display: none; }
/* header-small is absolute over dark image: white logo */
.header-small .light-mode { display: block; }
.header-small .dark-mode { display: none; }

/* Bio paragraph flush left */
.home-hero-right-bottom p { padding-left: 0 !important; margin-left: 0 !important; }
.home-hero-right-top .heading-alt-h2 { padding-left: 0; }

/* ===== RESPONSIVE ===== */
@media screen and (min-width: 1440px) {
  .heading-style-large { font-size: 12rem; }
  .heading-style-h2 { font-size: 6rem; }
  .heading-style-small { font-size: 8rem; }
  .heading-style-xxlarge { font-size: 19rem; }
  .heading-alt-h2 { font-size: 3.5rem; }
  .heading-alt-h3 { font-size: 2.5rem; }
  .heading-alt-h4 { font-size: 2rem; }
  .heading-alt-h5 { font-size: 1.75rem; }
  .heading-alt-small { font-size: 5rem; }
  .navbar { padding-left: 6rem; padding-right: 6rem; }
  .navbar-menu-item { font-size: 20px; }
  .button-text { font-size: 20px; }
  .nav-item { font-size: 1.25rem; }
  .home-hero-right-top { padding: 8rem 6rem 4rem; }
  .home-hero-right-bottom { padding: 6rem 6rem 8rem; }
  .home-services-item-content { padding: 6rem; }
  .section-top { gap: 8rem; padding: 8rem 6rem 5rem; }
  .footer { min-height: 100vh; padding: 6rem 6rem 3rem; }
  .project-preview-content { padding: 2rem; }
  .pageloader-heading { font-size: 12rem; }
  .button.primary { font-size: 1.125rem; }
  .service-item-content { padding: 5rem 6rem 8rem; }
}

@media screen and (max-width: 991px) {
  .show-tablet { display: none; }
  .header-small { display: block; position: fixed; background-color: var(--global-colors--background-default); }
  .header-small .navbar-logo-image { filter: invert(0) !important; }
  .navbar-small-menu { display: none; }
  .navbar-small-right .button-text { display: none; }
  .mobile-menu-toggle { display: flex; }
  .home-hero-grid { display: flex; flex-direction: column; }
  .home-hero-image { height: 75vw; position: static; }
  .home-hero-right-top { height: auto; padding: 3rem 4rem 0; }
  .home-hero-right-bottom { padding: 4rem; }
  .heading-alt-h2 { font-size: 1.75rem; }
  .heading-alt-h3 { font-size: 1.5rem; }
  .heading-alt-h4 { font-size: 1.375rem; }
  .heading-alt-small { font-size: 2.75rem; }
  .heading-style-xxlarge { font-size: 20vw; }
  .heading-style-small { font-size: 12vw; }
  .heading-style-h2 { font-size: 12vw; }
  .home-services-item { display: flex; flex-direction: column; }
  .home-services-item.odd { flex-direction: column-reverse; }
  .home-services-item-content { height: auto; padding: 4rem; gap: 3rem; }
  .home-services-item-image { height: 75vw; position: static; }
  .section-top { gap: 3rem; padding: 4rem 4rem 3rem; }
  .home-projects-grid { grid-template-columns: 1fr 1fr; }
  .section-contact { flex-flow: column; display: flex; }
  .contact-image-wrapper img { height: 75vw; position: static; }
  .contact-right { height: auto; padding: 3rem 4rem; }
  .project-preview-content { padding: 1.5rem; }
  .footer { min-height: auto; padding: 4rem 4rem 2rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .pageloader { padding: 3rem 4rem; }
  .studio-hero-top { padding: 3rem 4rem; }
  .project-gallery-grid { padding: 0 4rem 4rem; }
  .section-project-hero-top { padding: 3rem 4rem; }
  .project-hero-meta { gap: 5rem; }
  .service-item-content { grid-template-columns: 1fr; display: flex; flex-direction: column; padding: 4rem; }
  .service-item-content-left { position: static; }
  .project-preview-large-image-wrapper { height: 75vw; }
  .container-2 { padding: 0 4rem 4rem; }
  .form-row-1-2 { grid-template-columns: 1fr; }
}

@media screen and (max-width: 767px) {
  .navbar-small { padding: 1.25rem 2.5rem; }
  .home-hero-right-top { padding-left: 2.5rem; padding-right: 2.5rem; }
  .home-hero-right-bottom { padding: 3rem 2.5rem; }
  .heading-alt-small { font-size: 2.25rem; }
  .heading-style-xxlarge { font-size: 20vw; }
  .home-services-item-content { padding: 3rem 2.5rem; }
  .home-services-list { grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
  .section-top { gap: 2rem; padding: 2.5rem; }
  .home-projects-grid { display: flex; flex-direction: column; }
  .project-preview-content { padding: 1rem 2rem; }
  .section-contact { display: flex; flex-direction: column; }
  .contact-image-wrapper img { height: 100vw; }
  .footer { padding-top: 3rem; padding-left: 3rem; padding-right: 3rem; text-align: center; }
  .footer-nav { display: flex; flex-direction: column; gap: 3rem; }
  .footer-column { justify-content: center; align-items: center; }
  .nav { align-items: center; }
  .pageloader { padding: 2.5rem 3rem; }
  .project-gallery-grid { padding: 0 2.5rem 3rem; gap: 0.5rem; }
  .studio-hero-top { padding: 2.5rem; }
  .section-project-hero-top { padding: 2.5rem; }
  .service-item-content { padding: 3rem 2.5rem; }
  .container-2 { padding: 0 2.5rem 3rem; }
}


@media screen and (max-width: 479px) {
  .navbar-small { padding: 1rem 2rem; }
  .home-hero-right-top { padding-top: 2.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
  .home-hero-right-bottom { padding: 2.5rem 1.5rem; }
  .heading-alt-h2 { font-size: 1.5rem; }
  .heading-alt-h3 { font-size: 1.375rem; }
  .heading-alt-h5 { font-size: 1.125rem; }
  .home-services-list { display: flex; flex-direction: column; gap: 0.5rem; }
  .home-services-item-content { padding: 2rem; gap: 2rem; }
  .section-top { padding: 2rem 2rem 1.5rem; }
  .project-preview-content { padding: 1rem 2rem 1rem 1.2rem; }
  .footer { padding: 3rem 2rem 2rem; }
  .footer-nav { grid-template-columns: 1fr; }
  .pageloader-heading { font-size: 4rem; }
  .pageloader { padding: 1.5rem 2rem; }
  .project-gallery-grid { grid-template-columns: 1fr; padding: 0 2rem 2rem; }
  .studio-hero-top, .section-project-hero-top, .service-item-content { padding: 2rem; }
  .container-2 { padding: 0 2rem 2rem; grid-template-columns: 1fr; }
  .project-hero-meta { gap: 1.5rem; flex-flow: column; display: flex; }
}
