/* ors-base.css
 * Owned base styles, folded from webflow.css during the de-Webflow port (2026-06-18).
 * PHASE 1: exact used rules only, class names still w-* (renamed to ors-* in phase 2).
 * Loads after normalize.css, before oneroll-studios.css (the same cascade slot webflow.css held).
 * Used set determined by the 3-way audit: design/dewebflow-audit/SYNTHESIS.md
 * (Leg B runtime coverage = 48 used / 283 dead; dead variants, slider arrows, and the
 *  webflow-icons font are dropped because they never paint on this site.)
 */

/* ---- Box model + base elements ---- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

/* ---- Inline-block helper ---- */
.ors-inline-block {
  max-width: 100%;
  display: inline-block;
}

/* ---- Button ---- */
.ors-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}
input.ors-button {
  -webkit-appearance: button;
}

/* ---- Typography base ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px;
}
h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}
h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}
h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}
h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}
h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}
p {
  margin-top: 0;
  margin-bottom: 10px;
}
ul,
ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}

/* ---- Utilities ---- */
.ors-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Forms ---- */
.ors-form {
  margin: 0 0 15px;
}
.ors-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}
.ors-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.ors-input,
.ors-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.ors-input::placeholder,
.ors-select::placeholder {
  color: #999;
}
.ors-input:focus,
.ors-select:focus {
  border-color: #3898EC;
  outline: 0;
}
textarea.ors-input,
textarea.ors-select {
  height: auto;
}

/* ---- Background video (hero) ---- */
.ors-background-video {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: white;
}
.ors-background-video > video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  object-fit: cover;
  z-index: -100;
}
.ors-background-video > video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* ---- Slider / mobile work carousel ---- */
.ors-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #dddddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.ors-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}
.ors-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}
.ors-slider-nav {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.ors-slider-nav.ors-round > div {
  border-radius: 100%;
}
.ors-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0 3px 0.5em;
  transition: background-color 100ms, color 100ms;
}
.ors-slider-dot.ors-active {
  background-color: #fff;
}
.ors-slider-dot:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #fff;
}
.ors-slider-dot:focus.ors-active {
  box-shadow: none;
}

/* ---- Navbar ---- */
.ors-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}
.ors-nav:before,
.ors-nav:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.ors-nav:after {
  clear: both;
}
.ors-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}
.ors-nav-menu {
  position: relative;
  float: right;
}
.ors-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
}
.ors-nav-button:focus {
  outline: 0;
}
.ors-nav-button.ors-open {
  background-color: #C8C8C8;
  color: white;
}
@media screen and (max-width: 991px) {
  .ors-nav .ors-nav-menu {
    display: none;
  }
  .ors-nav .ors-nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .ors-nav-brand {
    padding-left: 10px;
  }
}
