/* ===================================================================
   OakTheory Landing — Standalone CSS
   Converted from Tailwind utility classes to plain CSS.
   =================================================================== */

/* --- Custom Properties --- */
:root {
  --oak-dark: oklch(0.15 0.02 60);
  --oak-cream: oklch(0.97 0.01 85);
  --oak-green: oklch(0.55 0.12 155);
  --oak-green-light: oklch(0.65 0.1 155);
  --oak-warm: oklch(0.92 0.02 80);

  --background: oklch(0.98 0.005 80);
  --foreground: oklch(0.15 0.02 60);
  --muted-foreground: oklch(0.5 0.02 60);
  --secondary: oklch(0.95 0.01 80);
  --border: oklch(0.9 0.01 80);

  --font-serif: "EB Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

/* --- Reset / Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.wlp-oaktheory {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* Reset heading weights — WordPress themes often set bold on h1-h6 */
body.wlp-oaktheory h1,
body.wlp-oaktheory h2,
body.wlp-oaktheory h3,
body.wlp-oaktheory h4,
body.wlp-oaktheory h5,
body.wlp-oaktheory h6 {
  font-weight: 400 !important;
  font-family: var(--font-serif) !important;
  line-height: 1.1;
  padding: 0;
  text-align: inherit;
}

body.wlp-oaktheory p {
  font-family: var(--font-sans);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Keyframe Animations --- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce-arrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}

.animate-bounce-arrow {
  animation: bounce-arrow 2s ease-in-out infinite;
}

.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.ot-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}

.ot-navbar.scrolled {
  background: rgba(from var(--oak-dark) r g b / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}

.ot-navbar__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

@media (min-width: 1024px) {
  .ot-navbar__inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.ot-navbar__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: #fff;
}

/* Desktop links */
.ot-navbar__links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .ot-navbar__links {
    display: flex;
  }
}

.ot-navbar__link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.ot-navbar__link:hover {
  color: #fff;
}

.ot-navbar__cta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.625rem 1.5rem;
  transition: all 0.3s;
}

.ot-navbar__cta:hover {
  border-color: #fff;
  background: #fff;
  color: var(--oak-dark);
}

/* Hamburger */
.ot-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

@media (min-width: 768px) {
  .ot-hamburger {
    display: none;
  }
}

.ot-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.ot-hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ot-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.ot-hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.ot-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  background: rgba(from var(--oak-dark) r g b / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ot-mobile-menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .ot-mobile-menu {
    display: none !important;
  }
}

.ot-mobile-menu a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.ot-mobile-menu__cta {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.625rem 1.5rem;
  text-align: center;
}

/* ===================================================================
   HERO
   =================================================================== */
.ot-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.ot-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ot-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(from var(--oak-dark) r g b / 0.7),
    rgba(from var(--oak-dark) r g b / 0.5),
    rgba(from var(--oak-dark) r g b / 0.8)
  );
}

.ot-hero__content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center !important;
  width: 100%;
}

.ot-hero__tagline {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.ot-hero__heading {
  font-family: var(--font-serif) !important;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 400 !important;
  color: #fff;
  opacity: 0;
  text-align: center !important;
}

@media (min-width: 640px)  { .ot-hero__heading { font-size: 3rem; } }
@media (min-width: 768px)  { .ot-hero__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .ot-hero__heading { font-size: 4.5rem; } }

.ot-hero__sub {
  max-width: 42rem;
  margin: 2rem auto 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  opacity: 0;
}

@media (min-width: 768px) { .ot-hero__sub { font-size: 1.125rem; } }

.ot-hero__buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
}

.ot-hero__btn-primary {
  display: inline-block;
  background: #fff;
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oak-dark);
  transition: background 0.3s;
}

.ot-hero__btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

.ot-hero__btn-secondary {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: border-color 0.3s;
}

.ot-hero__btn-secondary:hover {
  border-color: #fff;
}

/* Badges */
.ot-hero__badges {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
}

.ot-hero__badge {
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Scroll indicator */
.ot-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.ot-hero__scroll-text {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.ot-hero__scroll svg {
  margin: 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255,255,255,0.4);
}

/* ===================================================================
   STAT BAR
   =================================================================== */
.ot-statbar {
  background: var(--oak-dark);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .ot-statbar {
    padding: 5rem 0;
  }
}

.ot-statbar__grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .ot-statbar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .ot-statbar__grid {
    padding: 0 3rem;
  }
}

.ot-statbar__item {
  text-align: center !important;
}

.ot-statbar__value {
  font-family: var(--font-serif) !important;
  font-size: 2.25rem;
  color: #fff;
  text-align: center !important;
  font-weight: 400 !important;
}

@media (min-width: 768px) {
  .ot-statbar__value {
    font-size: 3rem;
  }
}

.ot-statbar__label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===================================================================
   CASE STUDIES
   =================================================================== */
.ot-cases {
  background: var(--background);
  padding: 6rem 0 6rem;
}

@media (min-width: 768px) {
  .ot-cases {
    padding: 8rem 0;
  }
}

.ot-cases__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .ot-cases__inner {
    padding: 0 3rem;
  }
}

.ot-cases__header {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center !important;
}

.ot-cases__label {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.ot-cases__title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 400;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .ot-cases__title {
    font-size: 3rem;
  }
}

.ot-cases__desc {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .ot-cases__desc {
    font-size: 1.125rem;
  }
}

/* Grid */
.ot-cases__grid {
  margin-top: 5rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .ot-cases__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.ot-case-card {
  display: flex;
  flex-direction: column;
}

.ot-case-card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--oak-cream);
  aspect-ratio: 4 / 5;
}

.ot-case-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.ot-case-card:hover .ot-case-card__img {
  transform: scale(1.05);
}

.ot-case-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  border-radius: 9999px;
  background: rgba(from var(--background) r g b / 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--foreground);
  backdrop-filter: blur(4px);
}

.ot-case-card__num {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: rgba(from var(--background) r g b / 0.8);
}

.ot-case-card__body {
  margin-top: 1.5rem;
}

.ot-case-card__cat {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.ot-case-card__name {
  margin-top: 0.75rem;
  font-family: var(--font-serif) !important;
  font-size: 1.5rem;
  font-weight: 400 !important;
  color: var(--foreground);
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .ot-case-card__name {
    font-size: 1.875rem;
  }
}

.ot-case-card:hover .ot-case-card__name {
  color: var(--oak-green);
}

.ot-case-card__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.ot-case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--foreground);
}

.ot-case-card__link .arrow {
  transition: transform 0.3s;
}

.ot-case-card:hover .ot-case-card__link .arrow {
  transform: translateX(4px);
}

/* ===================================================================
   ABOUT SECTION
   =================================================================== */
.ot-about {
  background: var(--oak-cream);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .ot-about {
    padding: 8rem 0;
  }
}

.ot-about__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .ot-about__inner {
    padding: 0 3rem;
  }
}

.ot-about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .ot-about__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .ot-about__grid {
    gap: 6rem;
  }
}

/* Image */
.ot-about__img-wrap {
  position: relative;
  order: 2;
}

@media (min-width: 768px) {
  .ot-about__img-wrap {
    order: 1;
  }
}

.ot-about__img-border {
  display: none;
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(from var(--oak-green) r g b / 0.3);
}

@media (min-width: 768px) {
  .ot-about__img-border {
    display: block;
  }
}

.ot-about__img {
  position: relative;
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}

/* Copy */
.ot-about__copy {
  order: 1;
}

@media (min-width: 768px) {
  .ot-about__copy {
    order: 2;
  }
}

.ot-about__label {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.ot-about__heading {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 400;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .ot-about__heading {
    font-size: 3rem;
  }
}

.ot-about__text {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .ot-about__text {
    font-size: 1.125rem;
  }
}

.ot-about__text + .ot-about__text {
  margin-top: 1.5rem;
}

.ot-about__founders {
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--foreground);
}

/* Values */
.ot-about__values {
  margin-top: 6rem;
  display: grid;
  gap: 2.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .ot-about__values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ot-value {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.ot-value__title {
  font-family: var(--font-serif) !important;
  font-size: 1.25rem;
  font-weight: 400 !important;
  color: var(--foreground);
  transition: color 0.3s;
}

.ot-value:hover .ot-value__title {
  color: var(--oak-green);
}

.ot-value__desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* ===================================================================
   SERVICES
   =================================================================== */
.ot-services {
  background: var(--background);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .ot-services {
    padding: 8rem 0;
  }
}

.ot-services__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .ot-services__inner {
    padding: 0 3rem;
  }
}

.ot-services__label {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.ot-services__heading {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--foreground);
  max-width: 31ch;

}

@media (min-width: 768px) {
  .ot-services__heading {
    font-size: 3rem;
  }
}

.ot-services__list {
  margin-top: 4rem;
}

.ot-service-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .ot-service-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    padding: 2.5rem 1rem;
  }
}

.ot-service-item:hover {
  background: rgba(from var(--secondary) r g b / 0.5);
}

.ot-service-item__num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--oak-green);
}

@media (min-width: 768px) {
  .ot-service-item__num {
    font-size: 1.875rem;
  }
}

.ot-service-item__title {
  font-family: var(--font-serif) !important;
  font-size: 1.25rem;
  font-weight: 400 !important;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .ot-service-item__title {
    font-size: 1.5rem;
  }
}

.ot-service-item__desc {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.ot-services__border-bottom {
  border-top: 1px solid var(--border);
}

/* ===================================================================
   WHO WE SERVE
   =================================================================== */
.ot-serve {
  background: var(--oak-cream);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .ot-serve {
    padding: 8rem 0;
  }
}

.ot-serve__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .ot-serve__inner {
    padding: 0 3rem;
  }
}

.ot-serve__header {
  text-align: center !important;
}

.ot-serve__label {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.ot-serve__heading {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .ot-serve__heading {
    font-size: 3rem;
  }
}

.ot-serve__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .ot-serve__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ot-serve-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.ot-serve-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}

.ot-serve-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--secondary);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.ot-serve-card__title {
  font-family: var(--font-serif) !important;
  font-size: 1.125rem;
  font-weight: 400 !important;
  color: var(--foreground);
}

.ot-serve-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* ===================================================================
   TRUSTED BY
   =================================================================== */
.ot-trusted {
  background: var(--background);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .ot-trusted {
    padding: 6rem 0;
  }
}

.ot-trusted__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .ot-trusted__inner {
    padding: 0 3rem;
  }
}

.ot-trusted__label {
  text-align: center !important;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.ot-trusted__heading {
  max-width: 42rem;
  margin: 1rem auto 0;
  text-align: center !important;
  font-family: var(--font-serif) !important;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 400 !important;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .ot-trusted__heading {
    font-size: 1.5rem;
  }
}

.ot-trusted__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem 2rem;
}

@media (min-width: 640px) {
  .ot-trusted__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .ot-trusted__grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.ot-trusted__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

/* Desktop: grayscale by default, full color on hover */
@media (min-width: 768px) {
  .ot-trusted__logo {
    opacity: 0.5;
    filter: grayscale(100%);
  }

  .ot-trusted__logo:hover {
    opacity: 1;
    filter: grayscale(0%);
  }
}

/* Mobile: always full color, no hover effect */
@media (max-width: 767px) {
  .ot-trusted__logo {
    opacity: 0.8;
    filter: none;
  }
}

.ot-trusted__logo img {
  height: 1.75rem;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .ot-trusted__logo img {
    height: 2rem;
  }
}

/* Salesforce logo slightly larger */
.ot-trusted__logo--salesforce img {
  height: 2.25rem;
}

@media (min-width: 768px) {
  .ot-trusted__logo--salesforce img {
    height: 2.5rem;
  }
}

/* ===================================================================
   TESTIMONIAL
   =================================================================== */
.ot-testimonial {
  position: relative;
  overflow: hidden;
  background: var(--oak-dark);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .ot-testimonial {
    padding: 8rem 0;
  }
}

.ot-testimonial__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-size: cover;
  background-position: center;
}

.ot-testimonial__inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center !important;
}

@media (min-width: 1024px) {
  .ot-testimonial__inner {
    padding: 0 3rem;
  }
}

.ot-testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 1;
  color: rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .ot-testimonial__quote-mark {
    font-size: 9rem;
  }
}

.ot-testimonial blockquote {
  margin-top: -3rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

@media (min-width: 768px) {
  .ot-testimonial blockquote {
    margin-top: -4rem;
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .ot-testimonial blockquote {
    font-size: 2.25rem;
  }
}

.ot-testimonial__author {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===================================================================
   CONTACT
   =================================================================== */
.ot-contact {
  background: var(--oak-dark);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .ot-contact {
    padding: 8rem 0;
  }
}

.ot-contact__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .ot-contact__inner {
    padding: 0 3rem;
  }
}

.ot-contact__grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 768px) {
  .ot-contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ot-contact__label {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.ot-contact__heading {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: #fff;
}

@media (min-width: 768px) {
  .ot-contact__heading {
    font-size: 3rem;
  }
}

.ot-contact__text {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

.ot-contact__text--small {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.ot-contact__info {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}

/* Form */
.ot-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
}

.ot-contact__form label {
  display: block !important;
  margin-bottom: 0.5rem !important;
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.5 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

.ot-contact__form input,
.ot-contact__form select,
.ot-contact__form textarea {
  width: 100% !important;
  max-width: 100% !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0.75rem 0 !important;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  color: #fff !important;
  outline: none !important;
  transition: border-color 0.3s;
  box-sizing: border-box !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.ot-contact__form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0 center !important;
  background-size: 12px !important;
  padding-right: 1.5rem !important;
}

.ot-contact__form select:invalid {
  color: rgba(255,255,255,0.3) !important;
}

.ot-contact__form input::placeholder,
.ot-contact__form textarea::placeholder {
  color: rgba(255,255,255,0.3) !important;
  font-family: var(--font-sans) !important;
}

.ot-contact__form input:focus,
.ot-contact__form select:focus,
.ot-contact__form textarea:focus {
  border-bottom-color: rgba(255,255,255,0.6) !important;
  box-shadow: none !important;
}

.ot-contact__form select option {
  color: var(--oak-dark);
  background: #fff;
}

.ot-contact__form textarea {
  resize: none;
}

.ot-contact__submit {
  margin-top: 1rem;
  width: 100% !important;
  max-width: 100% !important;
  background: #fff !important;
  padding: 1rem !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--oak-dark) !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background 0.3s;
  font-family: var(--font-sans) !important;
  box-sizing: border-box !important;
}

.ot-contact__submit:hover {
  background: rgba(255,255,255,0.9) !important;
}

/* Form wrapper — holds both form and success state */
.ot-contact__form-wrap {
  position: relative;
  min-height: 560px;
}

/* Form transition to hidden */
.ot-contact__form {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ot-contact__form-wrap.submitted .ot-contact__form {
  opacity: 0;
  transform: translateY(-0.5rem);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

/* Success state */
.ot-contact__success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.ot-contact__form-wrap.submitted .ot-contact__success {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hiding state — success fades out first, then form fades in */
.ot-contact__form-wrap.hiding .ot-contact__success {
  opacity: 0;
  transform: translateY(-0.5rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.ot-contact__form-wrap.hiding .ot-contact__form {
  opacity: 0;
  transform: translateY(0.5rem);
  transition: none;
}

.ot-contact__form-wrap.reveal .ot-contact__form {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ot-contact__success-icon {
  margin-bottom: 2rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}

.ot-contact__form-wrap.submitted .ot-contact__success-icon {
  transform: scale(1);
}

.ot-contact__success-heading {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: #fff;
}

@media (min-width: 768px) {
  .ot-contact__success-heading {
    font-size: 2.25rem;
  }
}

.ot-contact__success-text {
  margin-top: 1rem;
  max-width: 24rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

.ot-contact__send-another {
  margin-top: 2.5rem;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.3s;
}

.ot-contact__send-another:hover {
  color: #fff;
}

/* Toast notification */
.ot-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  z-index: 10000;
  padding: 0.875rem 1.5rem;
  background: #dc2626;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.ot-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.ot-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--oak-dark);
  padding: 3rem 0;
}

.ot-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .ot-footer__inner {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .ot-footer__inner {
    padding: 0 3rem;
  }
}

.ot-footer__brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  display: block;
}

.ot-footer__tagline {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.ot-footer__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.ot-footer__link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.ot-footer__link:hover {
  color: rgba(255,255,255,0.7);
}

.ot-footer__email {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===================================================================
   MOBILE CENTERING & OVERFLOW FIX
   =================================================================== */
@media (max-width: 767px) {
  .ot-about__copy,
  .ot-serve__header,
  .ot-services__inner,
  .ot-contact > div > div > div:first-child {
    text-align: center;
  }

  .ot-about__founders {
    text-align: center;
  }

  .ot-about__values {
    text-align: center;
  }

  .ot-value {
    text-align: center;
  }

  .ot-contact__label,
  .ot-contact__heading,
  .ot-contact__text,
  .ot-contact__text--small,
  .ot-contact__info {
    text-align: center;
  }

  /* Prevent any horizontal overflow */
  section,
  nav,
  footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Ensure images don't overflow */
  img {
    max-width: 100%;
  }
}
