/* ==========================================================================
   ONEX DEVELOPMENT — CUSTOM STYLING SYSTEM
   Luxury Design Tokens, Modern Grid Architecture & Fluid Micro-Animations
   ========================================================================== */

:root {
  /* Color System - Premium Light Luxury Theme */
  --color-bg-dark: #FAF9F5;
  /* Main Page Background (Soft Luxury Cream) */
  --color-bg-light: #F5F4F0;
  /* Preloader Background */
  --color-text-dark: #1A1A1A;
  /* Preloader Text */
  --color-text-light: #1C1D1D;
  /* Main Text Color (Elegant Charcoal) */
  --color-accent: #9A8C73;
  /* Deeper Luxury Gold/Taupe Accent */
  --color-border-light: rgba(154, 140, 115, 0.25);
  /* Warm border accent */
  --color-border-dark: rgba(0, 0, 0, 0.08);

  /* Typography System */
  --font-serif: 'Times New Roman', Times, serif;
  --font-sans: 'Montserrat', sans-serif;

  /* Layout tokens */
  --container-max-width: 1440px;
  --header-height: 90px;

  /* Transition curves */
  --ease-premium: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: initial;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body.oh-preloader-active {
  overflow: hidden !important;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* ==========================================================================
   CUSTOM LUXURY PRELOADER
   ========================================================================== */
.oh-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-bg-light);
  overflow: hidden;
}

.oh-preloader__text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  visibility: hidden;
  white-space: nowrap;
  max-width: 92vw;
}

.oh-preloader__text {
  white-space: nowrap;
  color: #161741;
}

.oh-preloader__char-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  font-size: clamp(32px, 6vw, 96px);
  line-height: 1;
  padding-bottom: 0.2em;
}

.oh-preloader__char {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 400;
  color: #161741;
  letter-spacing: 0.025em;
  line-height: 1;
  transform: translateY(110%);
  will-change: transform;
}

.oh-preloader__word {
  display: inline-block;
}

.oh-preloader__word-space {
  display: inline-block;
  width: 0.4em;
  font-size: clamp(32px, 6vw, 96px);
}

.oh-preloader__reveal-media {
  position: absolute;
  clip-path: inset(0 50% 0 50%);
  z-index: 3;
  overflow: hidden;
  opacity: 0;
  will-change: clip-path, opacity, top, left, width, height, border-radius;
}

.oh-preloader__reveal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oh-preloader__reveal-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* Video Background served locally in Hero section once loaded */
.oh-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  border-radius: 0;
  overflow: hidden;
}

.oh-video-bg__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: transform, opacity;
}

.oh-video-bg__slide.active {
  opacity: 1;
}

.oh-video-bg__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cycle different organic Ken Burns animations on the slides */
.oh-video-bg__slide:nth-child(1) img {
  animation: ohKenBurnsA 24s infinite ease-in-out;
}

.oh-video-bg__slide:nth-child(2) img {
  animation: ohKenBurnsB 24s infinite ease-in-out;
}

.oh-video-bg__slide:nth-child(3) img {
  animation: ohKenBurnsC 24s infinite ease-in-out;
}

.oh-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 13, 0.35);
  /* Dark layout overlay overlaying all slides */
  pointer-events: none;
  z-index: 5;
}

@keyframes ohKenBurnsA {
  0% {
    transform: scale(1.03) translate(0, 0);
  }

  50% {
    transform: scale(1.12) translate(-1.5%, -1%);
  }

  100% {
    transform: scale(1.03) translate(0, 0);
  }
}

@keyframes ohKenBurnsB {
  0% {
    transform: scale(1.15) translate(0, 0);
  }

  50% {
    transform: scale(1.05) translate(1.5%, -1.5%);
  }

  100% {
    transform: scale(1.15) translate(0, 0);
  }
}

@keyframes ohKenBurnsC {
  0% {
    transform: scale(1.05) translate(0, 0);
  }

  50% {
    transform: scale(1.12) translate(-1%, 1.5%);
  }

  100% {
    transform: scale(1.05) translate(0, 0);
  }
}

/* ==========================================================================
   GLOBAL HEADER & NAVIGATION
   ========================================================================== */
.oh-header {
  position: fixed;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: none;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(226, 225, 225, 0.15);
  /* #E2E1E126 translucent grey-white */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  transition: top 0.4s var(--ease-premium), width 0.4s var(--ease-premium), border-radius 0.4s var(--ease-premium), background-color 0.4s var(--ease-premium);
}

.oh-header.oh-header--scrolled {
  top: 0;
  width: 100%;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  background-color: #9A8C73;
}

.oh-header__burger.active .oh-burger-line {
  background-color: #000000;
}

.oh-header__container {
  max-width: none;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  white-space: nowrap;
}

.oh-header__col {
  display: flex;
  align-items: center;
}

.oh-header__col--left {
  justify-content: flex-start;
}

.oh-header__col--center {
  justify-content: center;
  text-align: center;
}

.oh-header__col--right {
  justify-content: flex-end;
}

.oh-header__logo-link {
  display: block;
}

.oh-logo-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  /* Keep white on dark hero header */
  line-height: 1;
  white-space: nowrap;
}

.oh-logo-sub {
  font-weight: 300;
  color: #B6AB99;
  /* Light gold on dark hero background */
  transition: color 0.4s var(--ease-premium);
}

.oh-nav__list {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}

.oh-nav__link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 8px 0;
}

.oh-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-premium);
}

.oh-nav__link:hover {
  color: #FFFFFF;
}

.oh-nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.oh-header__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.oh-header__social {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.oh-header__social:hover {
  color: #FFFFFF;
}

/* Premium Header Contact Button */
.oh-header__btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid var(--color-accent);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  z-index: 1;
  transition: color 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium);
}

.oh-header__btn-contact span {
  position: relative;
  z-index: 2;
}

.oh-header__btn-contact::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--color-accent);
  transition: height 0.4s var(--ease-premium);
  z-index: 1;
}

.oh-header__btn-contact:hover {
  color: #0C0D0D !important;
}

.oh-header__btn-contact:hover::after {
  height: 100%;
}

/* Mobile Envelope Link */
.oh-header__social-mobile-envelope {
  display: none;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.oh-header__social-mobile-envelope:hover {
  color: #FFFFFF;
}

/* Burger Toggle Button */
.oh-header__burger {
  background: none;
  border: none;
  width: 28px;
  height: 20px;
  cursor: pointer;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

.oh-burger-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  /* White initially over dark hero background */
  transition: transform 0.4s var(--ease-premium), background-color 0.4s var(--ease-premium);
}

/* Active Burger States */
.oh-header__burger.active .oh-burger-line-1 {
  transform: translateY(9px) rotate(45deg);
}

.oh-header__burger.active .oh-burger-line-2 {
  transform: rotate(-45deg) translateY(-10px);
}

/* Drawer Fullscreen Overlay Nav */
.oh-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oh-drawer.active {
  visibility: visible;
  pointer-events: auto;
}

.oh-drawer__bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-bg-dark);
  /* Light menu drawer background */
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease-expo);
}

.oh-drawer.active .oh-drawer__bg {
  transform: scaleY(1);
}

.oh-drawer__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max-width);
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-premium) 0.2s, transform 0.4s var(--ease-premium) 0.2s;
}

.oh-drawer.active .oh-drawer__container {
  opacity: 1;
  transform: translateY(0);
}

.oh-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oh-drawer__link {
  font-family: var(--font-serif);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: rgba(0, 0, 0, 0.4);
  transition: color 0.4s var(--ease-premium), padding-left 0.4s var(--ease-premium);
  display: block;
}

.oh-drawer__link:hover {
  color: #000000;
  padding-left: 20px;
}

.oh-drawer__footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.oh-drawer__tagline {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-accent);
  /* Dark gold tagline on light menu */
  max-width: 500px;
}

.oh-drawer__socials {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.oh-drawer__social-link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.6);
}

.oh-drawer__social-link:hover {
  color: #000000;
}

/* ==========================================================================
   GLOBAL LAYOUT ELEMENTS & UTILITIES
   ========================================================================= */
.oh-reveal {
  position: relative;
  z-index: 1;
}

.oh-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

/* Heading animation line masks */
.oh-split-line {
  display: block;
  overflow: hidden;
  line-height: 1.15;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.oh-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
  background-color: #111111;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oh-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  width: 100%;
}

.oh-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-align: center;
  white-space: normal;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.4);
  /* Text shadow for better contrast and depth on luxury images */
}

.oh-hero .oh-label {
  color: #B6AB99;
  /* Bright gold on dark cover image */
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.oh-hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

.oh-hero-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s var(--ease-premium);
  will-change: opacity;
}

.oh-hero-slider__slide.active {
  opacity: 1;
}

.oh-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 13, 0.4);
  z-index: 1;
  pointer-events: none;
}

.oh-hero-slider__controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 3;
  /* Premium Glassmorphic Background */
  background: rgba(12, 13, 13, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.oh-hero-slider__nav-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  position: relative;
  padding: 5px 0;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
  transition: color 0.3s var(--ease-premium), text-shadow 0.3s var(--ease-premium);
}

.oh-hero-slider__nav-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-premium);
}

.oh-hero-slider__nav-btn:hover {
  color: #FFFFFF;
}

.oh-hero-slider__nav-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  background-color: #FFFFFF;
}

.oh-hero-slider__pagination {
  display: flex;
  gap: 20px;
  margin: 0 15px;
}

.oh-hero-slider__dash-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  opacity: 0.65;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.7));
  transition: opacity 0.3s var(--ease-premium);
}

.oh-hero-slider__dash-wrap:hover {
  opacity: 0.9;
}

.oh-hero-slider__dash-wrap.active {
  opacity: 1;
}

.oh-hero-slider__dash-number {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}

.oh-hero-slider__dash {
  width: 35px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.45);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.oh-hero-slider__dash::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #FFFFFF;
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-premium);
}

.oh-hero-slider__dash-wrap.active .oh-hero-slider__dash::after {
  transform: translateX(0);
}

/* Scrolling Mouse indicator */
.oh-hero__scroll-indicator {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.oh-hero__scroll-dot {
  width: 4px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 2px;
  animation: ohScrollWheel 1.8s infinite ease-in-out;
}

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

  25% {
    opacity: 1;
  }

  75% {
    transform: translateY(12px);
    opacity: 0;
  }

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

@media (max-width: 768px) {
  .oh-hero-slider__controls {
    padding: 12px 20px;
    gap: 15px;
    bottom: 50px;
  }
  .oh-hero-slider__pagination {
    gap: 10px;
    margin: 0 10px;
  }
  .oh-hero-slider__dash {
    width: 20px;
  }
  .oh-hero-slider__nav-btn {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .oh-hero-slider__dash-number {
    font-size: 12px;
  }
}

/* ==========================================================================
   BRAND STATEMENT & LOTTIE PHILOSOPHY SECTION
   ========================================================================== */
/* ==========================================================================
   PHILOSOPHY SECTION (Olivia Harper Homes Clone)
   ========================================================================== */
.oh-philosophy {
  background-color: #EEEBE4;
  /* Exact warm beige background from reference */
  padding: 120px 40px 100px;
  width: 100%;
  border-bottom: 1px solid var(--color-border-light);
}

.oh-philosophy__container {
  max-width: 1440px;
  /* expanded width for text coverage */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  /* balanced spacing between stacked elements */
}

.oh-philosophy__brand-title {
  font-family: var(--font-serif);
  /* Gallient regular branding serif */
  font-size: clamp(36px, 4vw, 45px);
  font-weight: 400;
  color: var(--color-accent);
  /* #9A8C73 accent color */
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.oh-philosophy__quote {
  font-family: var(--font-sans);
  /* Inter/Sans-serif */
  font-size: clamp(32px, 3.5vw, 55px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text-dark);
  /* Elegant solid dark charcoal */
  letter-spacing: -0.02em;
  max-width: 100%;
}

.oh-philosophy__desc {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--color-text-light);
  /* elegant charcoal color */
  max-width: 100%;
  /* paragraph width limit */
  letter-spacing: 0.01em;
}

.oh-philosophy__btn-wrap {
  display: flex;
  margin-top: 10px;
}

.oh-philosophy__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background-color: var(--color-accent);
  /* #9A8C73 gold/taupe */
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  border-radius: 0 !important;
  /* Enforced sharp rectangular corners */
  transition: color 0.3s ease;
}

.oh-philosophy__btn span {
  position: relative;
  z-index: 2;
}

.oh-philosophy__btn-dot {
  font-size: 8px;
  /* small filled dot */
  color: #FFFFFF;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* Hover effect */
.oh-philosophy__btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #7E705A;
  /* Darker gold/taupe background */
  transition: height 0.3s ease;
  z-index: 1;
}

.oh-philosophy__btn:hover {
  color: #FFFFFF !important;
}

.oh-philosophy__btn:hover::after {
  height: 100%;
}

/* Responsive spacing adjustments */
@media (max-width: 1024px) {
  .oh-philosophy {
    padding: 80px 30px;
  }

  .oh-philosophy__container {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .oh-philosophy {
    padding: 60px 20px;
  }

  .oh-philosophy__container {
    gap: 20px;
  }

  .oh-philosophy__brand-title {
    font-size: 32px;
  }
}

/* ==========================================================================
   PHILOSOPHY SLIDESHOW SECTION (Corrected Layout)
   ========================================================================== */
.oh-philosophy-slideshow {
  background-color: #EEEBE4;
  /* matching page warm beige background */
  padding: 15px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-light);
}

.oh-philosophy-slideshow__bg-container {
  position: relative;
  width: 100%;
  min-height: 94vh;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5% 4%;
  /* padding matches reference */
  z-index: 1;
}

/* Background slides */
.oh-philosophy-slideshow__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.8s var(--ease-premium);
  animation: ohKenBurns 36s infinite linear;
}

.oh-philosophy-slideshow__slide.active {
  opacity: 1;
  z-index: 2;
}

.oh-philosophy-slideshow__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  /* dark overlay for text legibility */
  z-index: 3;
  pointer-events: none;
}

/* Section elements container */
.oh-philosophy-slideshow__content {
  position: relative;
  z-index: 4;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(94vh - 10%);
  /* safe height boundaries */
  gap: 40px;
}

/* Top Header Area */
.oh-philosophy-slideshow__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.oh-philosophy-slideshow__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: none;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.oh-philosophy-slideshow__line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  /* thin white line stretching across */
}

/* Center Logo Area */
.oh-philosophy-slideshow__center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.oh-philosophy-slideshow__monogram {
  width: 100%;
  max-width: 130px;
  /* exact monogram size from image */
  height: auto;
  opacity: 0.85;
  filter: brightness(200%) contrast(150%);
  animation: ohFloat 6s ease-in-out infinite;
}

/* Bottom Glassmorphic Card Area */
.oh-philosophy-slideshow__footer {
  width: 100%;
}

.oh-philosophy-slideshow__card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  /* rounded corners matching reference */
  padding: 35px 40px;
  backdrop-filter: blur(15px) saturate(0.8) !important;
  -webkit-backdrop-filter: blur(15px) saturate(1.8) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.oh-philosophy-slideshow__desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.012em;
}

.oh-philosophy-slideshow__btn-wrap {
  display: flex;
}

.oh-philosophy-slideshow__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background-color: var(--color-accent);
  /* gold/taupe accent button */
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  border-radius: 0 !important;
  /* Flat sharp rectangular corners constraint */
  transition: color 0.3s ease;
}

.oh-philosophy-slideshow__btn span {
  position: relative;
  z-index: 2;
}

.oh-philosophy-slideshow__btn-dot {
  font-size: 8px;
  /* small bullet circle icon */
  color: #FFFFFF;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* Slide-up hover animation */
.oh-philosophy-slideshow__btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #7E705A;
  /* Darker hover gold color */
  transition: height 0.3s ease;
  z-index: 1;
}

.oh-philosophy-slideshow__btn:hover {
  color: #FFFFFF !important;
}

.oh-philosophy-slideshow__btn:hover::after {
  height: 100%;
}

/* Responsive spacing adjustments */
@media (max-width: 1024px) {
  .oh-philosophy-slideshow__bg-container {
    min-height: auto;
    padding: 40px 25px;
  }

  .oh-philosophy-slideshow__monogram {
    max-width: 100px;
  }

  .oh-philosophy-slideshow__card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .oh-philosophy-slideshow {
    padding: 10px;
  }

  .oh-philosophy-slideshow__bg-container {
    border-radius: 10px;
    padding: 30px 15px;
  }

  .oh-philosophy-slideshow__title {
    font-size: 16px;
  }

  .oh-philosophy-slideshow__card {
    padding: 20px;
    gap: 20px;
  }

  .oh-philosophy-slideshow__desc {
    font-size: 15px;
  }
}


/* ==========================================================================
   PORTFOLIO PROJECTS SHOWCASE SECTION
   ========================================================================== */
.oh-projects {
  background-color: var(--color-bg-dark);
  padding: 100px 40px 160px;
}

.oh-projects__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
}

.oh-projects__header {
  text-align: center;
  margin-bottom: 80px;
}

.oh-projects__subheading {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.oh-projects__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--color-text-dark);
}

/* Slider Layout */
.oh-projects__slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 80px;
  box-sizing: border-box;
}

.oh-projects__slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s var(--ease-expo);
  width: 100%;
}

.oh-projects__slide {
  flex: 0 0 calc((100% - 30px) / 2);
  box-sizing: border-box;
}

/* Project Card */
.oh-project-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  cursor: pointer;
}

.oh-project-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-premium);
  z-index: 1;
}

.oh-project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.1) 0%, rgba(26, 26, 26, 0.75) 100%);
  transition: opacity 0.4s var(--ease-premium);
  z-index: 2;
}

.oh-project-card__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.oh-project-card__badge {
  align-self: flex-start;
  background-color: rgba(28, 29, 29, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.oh-project-card__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.oh-project-card__name {
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0;
}

.oh-project-card__btn-wrap {
  display: inline-flex;
}

.oh-project-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  border-radius: 0 !important;
  transition: color 0.3s ease;
}

.oh-project-card__btn span {
  position: relative;
  z-index: 2;
}

.oh-project-card__btn-dot {
  font-size: 6px;
  color: #FFFFFF;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.oh-project-card__btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #7E705A;
  transition: height 0.3s ease;
  z-index: 1;
}

/* Card Hover Zoom & Fill Animation */
.oh-project-card:hover .oh-project-card__bg {
  transform: scale(1.05);
}

.oh-project-card:hover .oh-project-card__btn::after {
  height: 100%;
}

/* Slider Arrow Controls */
.oh-projects__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #1A1A1A;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.oh-projects__arrow i {
  font-size: 16px;
}

.oh-projects__arrow:hover {
  background-color: var(--color-accent);
}

.oh-projects__arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.oh-projects__arrow--left {
  left: 10px;
}

.oh-projects__arrow--right {
  right: 10px;
}

/* Section Footer & Button */
.oh-projects__footer {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.oh-projects__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  border-radius: 0 !important;
  transition: color 0.3s ease;
}

.oh-projects__all-btn span {
  position: relative;
  z-index: 2;
}

.oh-projects__all-btn-dot {
  font-size: 8px;
  color: #FFFFFF;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.oh-projects__all-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #7E705A;
  transition: height 0.3s ease;
  z-index: 1;
}

.oh-projects__all-btn:hover::after {
  height: 100%;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .oh-projects {
    padding: 60px 20px 100px;
  }

  .oh-projects__slider-wrapper {
    padding: 0 45px;
  }

  .oh-projects__slide {
    flex: 0 0 100%;
  }

  .oh-project-card {
    height: 340px;
    padding: 30px;
  }

  .oh-projects__arrow {
    width: 40px;
    height: 40px;
  }

  .oh-projects__arrow--left {
    left: 2px;
  }

  .oh-projects__arrow--right {
    right: 2px;
  }
}

@media (max-width: 768px) {
  .oh-projects {
    padding: 50px 15px 80px;
  }

  .oh-projects__slider-wrapper {
    padding: 0 30px;
  }

  .oh-project-card {
    height: 280px;
    padding: 25px;
    border-radius: 15px;
  }

  .oh-projects__arrow {
    width: 32px;
    height: 32px;
  }

  .oh-projects__arrow--left {
    left: 0;
  }

  .oh-projects__arrow--right {
    right: 0;
  }

  .oh-projects__header {
    margin-bottom: 40px;
  }

  .oh-projects__footer {
    margin-top: 40px;
  }
}

/* ==========================================================================
   Section 4: Stacking Cards Philosophy
   ========================================================================== */
.oh-stacking {
  background-color: var(--color-bg-dark);
  padding: 130px 40px 60px;
  /* Safe 130px top padding clears the fixed glassmorphism header */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.oh-stacking__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.oh-stacking__header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.oh-stacking__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  margin-bottom: 20px;
}

.oh-stacking__tagline {
  font-size: 18px;
  font-weight: 300;
  color: rgba(28, 29, 29, 0.75);
}

.oh-stacking__cards-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  /* Locked height for clean stacking */
  overflow: visible;
}

.oh-stacking-card {
  width: 100%;
  height: 100%;
  background-color: #F3EFE6;
  /* Warm elegant light contrast card backdrop */
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  /* Softer shadows in light mode */
  transform-origin: center top;
  will-change: transform, opacity;
}

.oh-stacking-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-premium);
}

.oh-stacking-card:hover .oh-stacking-card__img {
  transform: scale(1.04);
}

/* ==========================================================================
   INTERACTIVE SERVICES ACCORDION
   ========================================================================== */
.oh-services {
  background-color: #EEEBE4;
  padding: 100px 40px;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.oh-services__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.oh-services__info-col {
  position: sticky;
  top: 150px;
  display: flex;
  flex-direction: column;
  max-width: 500px;
}

.oh-services__title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.05;
  color: var(--color-accent);
}

.oh-services__desc {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(28, 29, 29, 0.85);
}

.oh-services__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.oh-services__accordion-col {
  display: flex;
  flex-direction: column;
}

.oh-services__item {
  border-top: 1px solid var(--color-text-dark);
  padding: 0;
  cursor: pointer;
}

.oh-services__item:last-child {
  border-bottom: 1px solid var(--color-text-dark);
}

.oh-services__item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  transition: all 0.4s var(--ease-premium);
}


.oh-services__item-title {
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--color-text-dark);
  transition: color 0.4s var(--ease-premium);
}

.oh-services__item-body {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.oh-services__item-body-content {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  padding-left: 28px;
  padding-bottom: 20px;
}

.oh-services__item-text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.oh-services__item-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(28, 29, 29, 0.65);
  max-width: 400px;
}

.oh-services__item-img-wrap {
  flex: 1.2;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
}

.oh-services__item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oh-services__mobile-img {
  display: none;
}

/* Active service accordion states */
.oh-services__item.active {
}

.oh-services__item.active .oh-services__item-header {
}


.oh-services__item.active .oh-services__item-title {
  color: var(--color-text-light);
  font-weight: 500;
}

/* Right side visual panel columns removed for new accordion layout */

/* ==========================================================================
   LEADERSHIP & ABOUT PROFILE SECTION
   ========================================================================== */
.oh-about {
  background-color: var(--color-bg-dark);
  padding: 100px 40px;
}

.oh-about__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.oh-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.oh-about__left {
  max-width: 600px;
}

.oh-about__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 40px;
}

.oh-about__divider {
  width: 80px;
  height: 1px;
  background-color: var(--color-accent);
  margin-bottom: 40px;
}

.oh-about__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(28, 29, 29, 0.7);
  margin-bottom: 30px;
}

.oh-about__signature {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  color: var(--color-accent);
  font-style: italic;
}

.oh-about__right {
  display: flex;
  justify-content: center;
}

.oh-about__img-wrap {
  width: 100%;
  height: 420px;
  /* Locked height to match the services visual layout and ensure one-fold display */
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.oh-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
  object-position: top;
}

.oh-about__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
}

.oh-about__img-wrap:hover .oh-about__img {
  transform: scale(1.03);
}

/* ==========================================================================
/* ==========================================================================
   PRE-FOOTER BRAND STATEMENT
   ========================================================================== */
.oh-prefooter {
  background-color: #EEEBE4;
  padding: 120px 40px;
  text-align: center;
  border-top: 1px solid var(--color-border-light);
}

.oh-prefooter__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.oh-prefooter__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.oh-prefooter__logo-tag {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--color-text-dark);
  text-transform: uppercase;
}

.oh-prefooter__quote {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-dark);
}

.oh-prefooter__quote-highlight {
  color: var(--color-accent);
}

/* ==========================================================================
   ELEGANT BRANDING FOOTER SYSTEM
   ========================================================================== */
.oh-footer {
  background-color: var(--color-bg-dark);
  /* Light elegant luxury footer */
  padding: 120px 40px 40px;
  border-top: 1px solid var(--color-border-dark);
}

.oh-footer__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.oh-footer__top {
  display: block;
  margin-bottom: 0;
}

.oh-footer__brand-col {
  display: none;
}

.oh-footer__logo {
  height: 38px;
  width: auto;
  align-self: flex-start;
  /* Dark logo on light footer */
}

.oh-footer__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-dark);
}

.oh-footer__desc-highlight {
  color: var(--color-accent);
  /* Accent color */
}

.oh-footer__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.oh-footer__heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 25px;
}

.oh-footer__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.oh-footer__link {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 300;
}

.oh-footer__link:hover {
  color: #000000;
}

.oh-footer__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
}

.oh-footer__social-btn {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.oh-footer__social-btn:hover {
  color: #000000;
}

.oh-footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.oh-footer__copy {
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.4);
}

.oh-footer__credit {
  font-size: 13px;
  font-weight: 300;
}

.oh-footer__credit-link {
  color: rgba(0, 0, 0, 0.4);
  transition: color 0.3s;
}

.oh-footer__credit-link:hover {
  color: #000000;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --header-height: 80px;
  }

  .oh-header__container {
    padding: 0 30px;
  }

  #ohDesktopNav {
    display: none;
    /* Hide desktop menu on tablet/mobile */
  }

  .oh-header__blog-link {
    display: none !important;
  }

  .oh-header__burger {
    display: flex;
    /* Show burger menu on tablet/mobile */
  }

  /* Hide instagram icon on tablet */
  .oh-header__col--right .oh-header__social {
    display: none;
  }

  .oh-statement {
    padding: 80px 30px;
  }

  .oh-statement__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .oh-statement__right {
    order: -1;
    /* Place graphic at the top on small viewports */
  }

  .oh-statement__image-collage {
    max-width: 380px;
    height: 420px;
    margin: 0 auto;
  }

  .oh-statement__lottie-seal-wrap {
    width: 90px;
    height: 90px;
    top: 20%;
    left: -10px;
  }

  .oh-statement__lottie-seal-wrap .oh-lottie-container {
    width: 70px;
    height: 70px;
  }

  .oh-hero__scroll-indicator {
    display: none;
    /* Hide desktop mouse scroll wheel on mobile/tablet */
  }

  .oh-projects {
    padding: 120px 30px;
  }

  .oh-projects__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .oh-services {
    padding: 120px 30px;
  }

  .oh-services__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .oh-services__info-col {
    position: relative;
    top: 0;
    max-width: 100%;
  }

  .oh-services__visual-col {
    display: none;
  }

  .oh-services__mobile-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--color-border-light);
  }

  .oh-services__mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .oh-services__item-body-content {
    flex-direction: column;
    padding-left: 0;
    gap: 20px;
  }

  .oh-services__item-img-wrap {
    height: 220px;
  }

  .oh-about {
    padding: 120px 30px;
  }

  .oh-about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .oh-footer__top {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* Stacking Cards Tablet layout */
  .oh-stacking {
    padding: 120px 30px 60px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .oh-stacking__cards-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: visible;
  }

  .oh-stacking-card {
    height: 100% !important;
  }
}

@media (max-width: 768px) {
  .oh-header {
    top: 15px;
    width: calc(100% - 30px);
  }

  .oh-header__container {
    padding: 0 20px;
  }

  /* Hide Contact Us button on mobile */
  .oh-header__btn-contact {
    display: none;
  }

  /* Show Envelope icon on mobile */
  .oh-header__social-mobile-envelope {
    display: inline-block;
  }

  .oh-drawer__container {
    padding: 0 20px;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 40px;
  }

  .oh-drawer__footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .oh-drawer__socials {
    justify-content: flex-start;
  }

  .oh-hero {
    padding: 0 20px;
  }

  .oh-statement {
    padding: 40px 20px 60px 20px;
  }

  .oh-statement__image-collage {
    max-width: 290px;
    height: 320px;
    margin: 0 auto;
  }

  .oh-statement__lottie-seal-wrap {
    width: 70px;
    height: 70px;
    top: 15%;
    left: -5px;
  }

  .oh-statement__lottie-seal-wrap .oh-lottie-container {
    width: 50px;
    height: 50px;
  }

  .oh-projects {
    padding: 80px 20px;
  }

  .oh-services {
    padding: 80px 20px;
  }

  .oh-about {
    padding: 80px 20px;
  }

  /* Stacking Cards Mobile layout */
  .oh-stacking {
    padding: 80px 20px 40px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .oh-stacking__cards-wrapper {
    height: 300px;
  }

  .oh-stacking-card {
    height: 100% !important;
  }

  .oh-footer {
    padding: 80px 20px 30px;
  }

  .oh-footer__links-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .oh-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* ==========================================================================
   PROJECT DETAIL PAGE
   ========================================================================== */
.oh-project-page {
  background-color: #EEEBE4;
}

.oh-project-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 40px;
  background-color: var(--color-bg-dark);
}

.oh-project-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.oh-project-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.oh-project-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
  width: 100%;
}

.oh-project-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 20px;
  white-space: nowrap;
}

.oh-project-details {
  padding: 120px 40px;
  background-color: #EEEBE4;
}

.oh-project-details__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.oh-project-details__desc {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text-dark);
}

.oh-project-gallery {
  padding: 0 40px 120px;
  background-color: #EEEBE4;
}

.oh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.oh-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
}

.oh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-premium);
}

.oh-gallery-item:hover img {
  transform: scale(1.05);
}

.oh-gallery-item--full {
  grid-column: span 12;
  height: 70vh;
}

.oh-gallery-item--half {
  grid-column: span 6;
  height: 50vh;
}

@media (max-width: 768px) {
  .oh-gallery-item--half {
    grid-column: span 12;
    height: 40vh;
  }
  .oh-gallery-item--full {
    height: 50vh;
  }
}

/* ==========================================================================
   AMENITIES SECTION (GREEN COUNTY)
   ========================================================================== */
.oh-amenities {
  padding: 80px 40px;
  background-color: #FAFAFA;
}

.oh-amenities__container {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.oh-amenities__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
  font-weight: 500;
}

.oh-amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.oh-amenity-card {
  background-color: #F6F5F2;
  padding: 50px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
  cursor: default;
}

.oh-amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.oh-amenity-card__icon {
  font-size: 45px;
  color: #1C1D1D;
  margin-bottom: 20px;
}

.oh-amenity-card__label {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #333333;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .oh-amenities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .oh-amenities__grid {
    grid-template-columns: 1fr;
  }
  .oh-amenities__title {
    margin-bottom: 40px;
  }
}

/* ==========================================================================
   CUSTOM GALLERY SLIDER
   ========================================================================== */
.oh-gallery-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.oh-gallery-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
  font-weight: 500;
}

.oh-swiper-gallery {
  width: 100%;
  overflow: visible;
  padding-bottom: 20px;
}

.oh-slide {
  width: 60vw;
  max-width: 1000px;
  height: 60vh;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.85);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.oh-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-active.oh-slide {
  transform: scale(1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  z-index: 2;
}

.oh-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
  font-size: 24px;
  color: #1C1D1D;
}

.oh-slider-btn:hover {
  background-color: #FFFFFF;
}

.oh-slider-btn--left {
  left: 10vw;
}

.oh-slider-btn--right {
  right: 10vw;
}

@media (max-width: 768px) {
  .oh-slide {
    width: 85vw;
    height: 40vh;
    min-height: auto;
  }
  .oh-slider-btn--left {
    left: 20px;
  }
  .oh-slider-btn--right {
    right: 20px;
  }
}

/* ==========================================================================
   PROJECT HIGHLIGHTS (SPLIT SECTION)
   ========================================================================== */
.oh-project-highlights {
  background-color: #FFFFFF;
}

.oh-highlights-container {
  display: flex;
  min-height: 85vh;
}

.oh-highlights-content {
  flex: 1;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.oh-highlights-image {
  flex: 1;
  position: relative;
}

.oh-highlights-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oh-badge--new {
  background-color: #1FC25E;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 24px;
}

.oh-highlights-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #111111;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.oh-highlights-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  color: #111111;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}

.oh-highlights-desc {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.oh-metrics-row {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.oh-metric {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.oh-metric-icon {
  font-size: 26px;
  color: #111111;
  margin-top: 4px;
}

.oh-metric-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oh-metric-label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #888888;
}

.oh-metric-value {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #111111;
  font-weight: 600;
}

.oh-btn--dark {
  background-color: #0E1F33;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.oh-btn--dark:hover {
  background-color: #183354;
}

@media (max-width: 992px) {
  .oh-highlights-container {
    flex-direction: column;
  }
  .oh-highlights-content {
    padding: 60px 5%;
  }
  .oh-highlights-image {
    min-height: 400px;
  }
  .oh-metrics-row {
    gap: 20px;
  }
}

/* ==========================================================================
   PAYMENT PLAN SECTION
   ========================================================================== */
.oh-payment-plan {
  padding: 100px 5%;
  background-color: #FAFAFA;
  text-align: center;
}

.oh-payment-container {
  max-width: 1200px;
  margin: 0 auto;
}

.oh-payment-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 40px);
  color: #0E1F33;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.oh-payment-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #444444;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.oh-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.oh-payment-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  display: flex;
  flex-direction: column;
}

.oh-payment-card__percent {
  font-family: var(--font-sans);
  font-size: clamp(60px, 8vw, 90px);
  color: #0E1F33;
  font-weight: 300;
  padding: 40px 20px;
  line-height: 1;
}

.oh-payment-card__strip {
  background-color: #0E1F33;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  padding: 15px 20px;
}

.oh-payment-card__subtext {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #222222;
  padding: 25px 20px;
}

@media (max-width: 900px) {
  .oh-payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .oh-payment-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PROJECT DETAILS & CONTACT SPLIT SECTION
   ========================================================================== */
.oh-project-info-split {
  padding: 100px 5%;
  background-color: #FFFFFF;
}

.oh-project-info-split__container {
  max-width: var(--container-max-width, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.oh-project-info-split__title {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 28px;
  color: #111111;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Details Grid */
.oh-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.oh-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #EAEAEA;
}

.oh-detail-item--full {
  grid-column: span 2;
}

.oh-detail-icon {
  font-size: 20px;
  color: #111111;
  width: 24px;
  text-align: center;
}

.oh-detail-text {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 16px;
  color: #444444;
}

/* Contact Card */
.oh-contact-card {
  background-color: #FAFAFA;
  border: 1px solid #EAEAEA;
  padding: 40px;
  border-radius: 8px;
}

.oh-contact-card__name {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 22px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 4px;
}

.oh-contact-card__sub {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 14px;
  color: #888888;
  margin-bottom: 24px;
}

.oh-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.oh-contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 15px;
  color: #444444;
}

.oh-contact-info-list li i {
  color: #111111;
  width: 20px;
  text-align: center;
}

.oh-contact-info-list li a {
  color: #444444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.oh-contact-info-list li a:hover {
  color: var(--color-accent, #9A8C73);
}

.oh-btn--full {
  width: 100%;
  justify-content: center;
}

@media (max-width: 992px) {
  .oh-project-info-split__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .oh-details-grid {
    grid-template-columns: 1fr;
  }
  .oh-detail-item--full {
    grid-column: span 1;
  }
}

/* ==========================================================================
   PINNED GALLERY SECTION
   ========================================================================== */
.oh-pinned-gallery {
  background-color: #EFECE6;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.oh-pinned-gallery__container {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: var(--container-max-width, 1440px);
  margin: 0 auto;
}

.oh-pinned-gallery__left {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.oh-pinned-gallery__content {
  max-width: 500px;
}

.oh-pinned-gallery__subtitle {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #9A8C73;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.oh-pinned-gallery__title {
  font-family: var(--font-serif, serif);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 300;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 40px;
}

.oh-pinned-gallery__desc {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 20px;
  color: rgba(17, 17, 17, 0.5);
  font-weight: 300;
  max-width: 400px;
}

.oh-pinned-gallery__desc-count {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(17, 17, 17, 0.4);
}

.oh-pinned-gallery__right {
  width: 55%;
  height: 100%;
  position: relative;
}

.oh-pinned-gallery__images {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 5% 60px 0;
}

.oh-pinned-gallery__image-wrap {
  width: 100%;
  height: 80vh;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.oh-pinned-gallery__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .oh-pinned-gallery {
    height: auto;
    overflow: visible;
  }
  
  .oh-pinned-gallery__container {
    flex-direction: column;
  }
  
  .oh-pinned-gallery__left {
    width: 100%;
    height: auto;
    padding: 80px 5% 40px;
    align-items: flex-start;
  }

  .oh-pinned-gallery__right {
    width: 100%;
    height: auto;
    padding: 0 5%;
  }
  
  .oh-pinned-gallery__images {
    padding: 0 0 80px 0;
  }

  .oh-pinned-gallery__image-wrap {
    height: auto;
  }
}

/* ==========================================================================
   HORIZONTAL PINNED GALLERY SECTION
   ========================================================================== */
.oh-horizontal-gallery {
  background-color: #EFECE6;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.oh-horizontal-gallery__container {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: var(--container-max-width, 1440px);
  margin: 0 auto;
}

.oh-horizontal-gallery__text-slide {
  width: 45vw; /* Same width as old left column */
  max-width: 600px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  flex-shrink: 0;
}

.oh-horizontal-gallery__content {
  max-width: 500px;
}

.oh-horizontal-gallery__subtitle {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #9A8C73;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.oh-horizontal-gallery__title {
  font-family: var(--font-serif, serif);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 300;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 40px;
}

.oh-horizontal-gallery__desc {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 20px;
  color: rgba(17, 17, 17, 0.5);
  font-weight: 300;
  max-width: 400px;
}

.oh-horizontal-gallery__desc-count {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(17, 17, 17, 0.4);
}

.oh-horizontal-gallery__right {
  width: 55%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden; /* Hide overflow to allow sliding */
}

.oh-horizontal-gallery__images {
  display: flex;
  flex-direction: row;
  gap: 60px;
  padding: 0 5%;
  height: 80vh;
}

.oh-horizontal-gallery__image-wrap {
  width: 65vw;
  max-width: 1200px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 1440px) {
  .oh-horizontal-gallery__image-wrap {
    width: 70vw;
  }
}

.oh-horizontal-gallery__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .oh-horizontal-gallery__text-slide {
    width: 85vw;
    padding: 0 5%;
  }

  .oh-horizontal-gallery__image-wrap {
    width: 80vw;
  }
}

/* ==========================================================================
   SALES MANAGER CONTACT SECTION
   ========================================================================== */
.oh-sales-contact {
  background-color: var(--color-bg, #F9F8F6);
  padding: 60px 0 0 0;
  width: 100%;
}

.oh-sales-contact__container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.oh-sales-contact__card {
  display: flex;
  background-color: #EFECE6;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  max-height: 450px;
}

.oh-sales-contact__left {
  width: 50%;
  background-color: #382A22; /* Dark brown */
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #EFECE6;
}

.oh-sales-contact__title {
  font-family: var(--font-serif, serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #EFECE6;
}

.oh-sales-contact__desc {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(239, 236, 230, 0.8);
  margin-bottom: 30px;
  max-width: 90%;
}

.oh-sales-contact__info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
}

.oh-sales-contact__name {
  color: #EFECE6;
}

.oh-sales-contact__phone,
.oh-sales-contact__email {
  color: rgba(239, 236, 230, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.oh-sales-contact__phone:hover,
.oh-sales-contact__email:hover {
  color: #EFECE6;
}

.oh-sales-contact__btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid rgba(239, 236, 230, 0.3);
  border-radius: 8px;
  color: #EFECE6;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  background-color: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.oh-sales-contact__btn:hover {
  background-color: #EFECE6;
  color: #382A22;
}

.oh-sales-contact__right {
  width: 50%;
  position: relative;
  background-color: #E6E1D8;
}

.oh-sales-contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .oh-sales-contact__card {
    flex-direction: column;
    max-height: none;
  }
  .oh-sales-contact__left,
  .oh-sales-contact__right {
    width: 100%;
  }
  .oh-sales-contact__left {
    padding: 50px 30px;
  }
}

/* ==========================================================================
   FULL SCREEN CONTACT MODAL
   ========================================================================== */
.oh-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #FAF8F5; /* Cream background matching reference */
  overflow: hidden; /* No scrolling */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-premium);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.oh-contact-modal.active {
  opacity: 1;
  pointer-events: all;
}

/* Close Button */
.oh-contact-modal__close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: #7D6B61;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  z-index: 10;
}

.oh-contact-modal__close:hover {
  background: #5A4B43;
}

/* Container */
.oh-contact-modal__container {
  width: 100%;
  max-width: 1200px;
  padding: 40px;
  margin: 0 auto;
}

/* Body Grid */
.oh-contact-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .oh-contact-modal {
    display: block; /* Switch to block for robust mobile scrolling */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100vh;
    padding: 0;
  }

  .oh-contact-modal__container {
    padding: 70px 20px 40px; 
    max-width: 100%;
  }

  .oh-contact-modal__close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    position: fixed; /* Keep it fixed at the top right of the viewport */
  }

  .oh-contact-modal__body {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }

  .oh-contact-modal__form-wrap {
    padding: 30px 20px; /* Reduce padding for mobile */
  }

  .oh-contact-modal__title {
    font-size: clamp(32px, 8vw, 40px); /* Smaller title for mobile */
  }

  .oh-contact-card {
    flex-direction: column;
    gap: 15px;
  }

  .oh-contact-card__img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
}

/* Left Side Wrapper */
.oh-contact-modal__left {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Header */
.oh-contact-modal__header {
  text-align: left;
  max-width: 500px;
}

.oh-contact-modal__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #9A8C73;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.oh-contact-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 60px);
  color: #B6AB99;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 25px;
}

.oh-contact-modal__desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Contact Card (Left Side) */
.oh-contact-modal__contacts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.oh-contact-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.oh-contact-card__img-wrap {
  width: 100px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.oh-contact-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oh-contact-card__info {
  display: flex;
  flex-direction: column;
}

.oh-contact-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #333;
  margin-bottom: 5px;
}

.oh-contact-card__role {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 20px;
}

.oh-contact-card__link {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #555;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.oh-contact-card__link:hover {
  color: var(--color-accent);
}

/* Form (Right Side) */
.oh-contact-modal__form-wrap {
  background-color: #EFEBE4;
  padding: 50px 40px;
  border-radius: 16px;
}

.oh-contact-modal__form-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: #6C5D53;
  margin-bottom: 30px;
  font-weight: 400;
}

.oh-form-group {
  margin-bottom: 25px;
  position: relative;
}

.oh-form-input,
.oh-form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #CCC6BC;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s;
}

.oh-form-textarea {
  resize: vertical;
  min-height: 80px;
}

.oh-form-input:focus,
.oh-form-textarea:focus {
  outline: none;
  border-bottom-color: #7D6B61;
}

.oh-form-input::placeholder,
.oh-form-textarea::placeholder {
  color: #999;
}

.oh-form-checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 30px;
  margin-top: 20px;
}

.oh-form-checkbox {
  margin-top: 3px;
  accent-color: #7D6B61;
}

.oh-form-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.oh-form-submit {
  background-color: #7D6B61;
  color: #FFF;
  border: none;
  padding: 12px 30px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 20px;
}

.oh-form-submit:hover {
  background-color: #5A4B43;
}

.oh-form-disclaimer {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}

.oh-form-disclaimer a {
  color: #666;
  text-decoration: underline;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
  color: #FFF;
}

/* Mobile Responsiveness */
@media screen and (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.oh-testimonials {
  padding: 100px 40px;
  background-color: var(--color-bg-light);
  overflow: hidden;
}

.oh-testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.oh-testimonials__slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 70px;
}

.oh-testimonials__slider-track {
  display: flex;
  transition: transform 0.6s var(--ease-premium);
  gap: 30px;
}

.oh-testimonials__slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
}

@media screen and (min-width: 768px) {
  .oh-testimonials__slide {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }
}

@media screen and (min-width: 1024px) {
  .oh-testimonials__slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
  }
}

.oh-testimonial-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 280px;
  width: 100%;
  border: 1px solid var(--color-border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oh-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.oh-testimonial-card__quote {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 30px;
  font-style: italic;
}

.oh-testimonial-card__author {
  margin-top: auto;
}

.oh-testimonial-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-text-dark);
  margin-bottom: 5px;
}

.oh-testimonial-card__role {
  font-size: 13px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.oh-testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border-dark);
  color: var(--color-text-dark);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.oh-testimonials__arrow:hover:not(:disabled) {
  background-color: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
}

.oh-testimonials__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.oh-testimonials__arrow--left {
  left: 0px;
}

.oh-testimonials__arrow--right {
  right: 0px;
}

@media screen and (max-width: 767px) {
  .oh-testimonials { padding: 60px 15px; }
  .oh-testimonials__slider-wrapper { padding: 20px 30px; }
  .oh-testimonials__arrow { width: 30px; height: 30px; font-size: 12px; }
  .oh-testimonials__arrow--left { left: 0px; }
  .oh-testimonials__arrow--right { right: 0px; }
  .oh-testimonial-card { padding: 25px 15px; }
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.oh-blog {
  padding: 100px 40px;
  background-color: var(--color-bg-dark);
}

.oh-blog__container {
  max-width: 1200px;
  margin: 0 auto;
}

.oh-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .oh-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .oh-blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.oh-blog-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
  display: flex;
  flex-direction: column;
}

.oh-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.oh-blog-card__img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.oh-blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

.oh-blog-card:hover .oh-blog-card__img-wrap img {
  transform: scale(1.05);
}

.oh-blog-card__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.oh-blog-card__date {
  font-size: 13px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  font-weight: 500;
}

.oh-blog-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: 15px;
}

.oh-blog-card__title a {
  color: inherit;
}

.oh-blog-card__title a:hover {
  color: var(--color-accent);
}

.oh-blog-card__excerpt {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.oh-blog-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.oh-blog-card__link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.oh-blog-card__link:hover {
  color: var(--color-accent);
}

.oh-blog-card__link:hover i {
  transform: translateX(4px);
}

@media screen and (max-width: 767px) {
  .oh-blog { padding: 60px 20px; }
  .oh-blog-card__img-wrap { height: 200px; }
  .oh-blog-card__content { padding: 25px 20px; }
}

/* ==========================================================================
   BLOG PAGE LAYOUT
   ========================================================================== */

/* Page Hero */
.oh-page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.oh-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.oh-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,20,20,0.5) 0%, rgba(14,20,20,0.8) 100%);
  z-index: 2;
}

.oh-page-hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.oh-page-hero__content .oh-label {
  color: var(--color-accent);
  margin-bottom: 15px;
}

.oh-page-hero__title {
  font-family: var(--font-serif);
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.oh-page-hero__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Blog Layout Container */
.oh-blog-layout {
  padding: 100px 40px;
  background-color: var(--color-bg-light);
}

.oh-blog-layout__container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media screen and (min-width: 1024px) {
  .oh-blog-layout__container {
    grid-template-columns: 2fr 1fr;
    gap: 80px;
  }
}

/* Main Post Cards */
.oh-blog-post-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 50px;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.oh-blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.oh-blog-post-card__img-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.oh-blog-post-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}

.oh-blog-post-card:hover .oh-blog-post-card__img-wrap img {
  transform: scale(1.05);
}

.oh-blog-post-card__content {
  padding: 40px;
}

.oh-blog-post-card__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.oh-blog-post-card__category {
  color: var(--color-accent);
}

.oh-blog-post-card__date {
  color: var(--color-text-light);
}

.oh-blog-post-card__title {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.oh-blog-post-card__title a {
  color: inherit;
  text-decoration: none;
}

.oh-blog-post-card__title a:hover {
  color: var(--color-accent);
}

.oh-blog-post-card__excerpt {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.oh-blog-post-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.oh-blog-post-card__link:hover {
  color: var(--color-accent);
}

.oh-blog-post-card__link:hover i {
  transform: translateX(5px);
}

/* Pagination */
.oh-blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}

.oh-blog-pagination__btn,
.oh-blog-pagination__page {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-dark);
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.oh-blog-pagination__page:hover,
.oh-blog-pagination__btn:hover:not(.oh-blog-pagination__btn--disabled) {
  background-color: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
}

.oh-blog-pagination__page.active {
  background-color: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
}

.oh-blog-pagination__btn--disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Sidebar */
.oh-blog-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.oh-sidebar-widget {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 35px;
  border: 1px solid var(--color-border-light);
}

.oh-sidebar-widget--highlight {
  background-color: var(--color-bg-dark);
  border: none;
}

.oh-sidebar-widget__title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-text-dark);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.oh-sidebar-widget__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

/* Sidebar Search */
.oh-sidebar-search {
  position: relative;
  display: flex;
}

.oh-sidebar-search__input {
  width: 100%;
  padding: 15px 20px;
  padding-right: 50px;
  border: 1px solid var(--color-border-dark);
  border-radius: 6px;
  background: transparent;
  font-family: var(--font-sans);
  color: var(--color-text-dark);
}

.oh-sidebar-search__btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s ease;
}

.oh-sidebar-search__btn:hover {
  color: var(--color-accent);
}

/* Sidebar Categories */
.oh-sidebar-widget__categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oh-sidebar-widget__categories li {
  border-bottom: 1px solid var(--color-border-light);
}

.oh-sidebar-widget__categories li:last-child {
  border-bottom: none;
}

.oh-sidebar-widget__categories a {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.oh-sidebar-widget__categories a:hover {
  color: var(--color-accent);
}

.oh-sidebar-widget__categories span {
  color: var(--color-text-light);
}

/* Sidebar Latest Posts */
.oh-sidebar-latest {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oh-sidebar-latest__item {
  display: flex;
  gap: 15px;
  align-items: center;
  text-decoration: none;
}

.oh-sidebar-latest__item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.oh-sidebar-latest__info {
  flex: 1;
}

.oh-sidebar-latest__title {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.4;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.oh-sidebar-latest__item:hover .oh-sidebar-latest__title {
  color: var(--color-accent);
}

.oh-sidebar-latest__date {
  font-size: 12px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sidebar Subscribe */
.oh-sidebar-subscribe {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.oh-sidebar-subscribe__input {
  width: 100%;
  padding: 15px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #FFFFFF;
}

.oh-sidebar-subscribe__input::placeholder {
  color: rgba(255,255,255,0.5);
}

.oh-sidebar-subscribe__btn {
  width: 100%;
  padding: 15px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.oh-sidebar-subscribe__btn:hover {
  background-color: #d19a4e; /* slightly darker gold */
}

@media screen and (max-width: 767px) {
  .oh-page-hero__title { font-size: 36px; }
  .oh-blog-layout { padding: 60px 20px; }
  .oh-blog-post-card__img-wrap { height: 240px; }
  .oh-blog-post-card__content { padding: 25px; }
  .oh-blog-post-card__title { font-size: 24px; }
}

/* ==========================================================================
   SINGLE POST PAGE
   ========================================================================== */
.oh-post-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 50px;
}

.oh-post-content__header {
  margin-bottom: 40px;
}

.oh-post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.oh-post-category {
  color: var(--color-accent);
}

.oh-post-date {
  color: var(--color-text-light);
}

.oh-post-title {
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

.oh-post-hero-img {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}

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

.oh-post-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-dark);
}

.oh-post-body .oh-post-intro {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-dark);
  font-weight: 300;
  margin-bottom: 40px;
}

.oh-post-body h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--color-text-dark);
  margin-top: 50px;
  margin-bottom: 25px;
}

.oh-post-body p {
  margin-bottom: 25px;
  color: var(--color-text-light);
}

.oh-post-image {
  margin: 50px 0;
  border-radius: 8px;
  overflow: hidden;
}

.oh-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.oh-post-image figcaption {
  margin-top: 15px;
  font-size: 14px;
  color: var(--color-text-light);
  font-style: italic;
  text-align: center;
}

.oh-post-body blockquote {
  margin: 50px 0;
  padding: 40px;
  background-color: var(--color-bg-light);
  border-left: 4px solid var(--color-accent);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-text-dark);
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

.oh-post-tags {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.oh-post-tags span {
  font-weight: 500;
  color: var(--color-text-dark);
}

.oh-post-tags a {
  padding: 8px 16px;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.oh-post-tags a:hover {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .oh-post-content { padding: 30px 20px; }
  .oh-post-title { font-size: 32px; }
  .oh-post-hero-img { height: 250px; }
  .oh-post-body blockquote { padding: 30px 20px; font-size: 20px; }
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.oh-location {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.oh-location__text {
  flex: 1 1 500px;
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oh-location__title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 20px;
}

.oh-location__desc {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.oh-location__info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.oh-location__info-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-top: 5px;
}

.oh-location__info-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #111;
  margin-bottom: 5px;
}

.oh-location__info-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.oh-location__map {
  flex: 1 1 500px;
  min-height: 450px;
}

.oh-location__map iframe {
  border: 0;
  display: block;
  min-height: 450px;
  width: 100%;
  height: 100%;
}

/* Blog Slider Styles */
.oh-blog__slider-wrap {
  position: relative;
  overflow: visible;
  padding: 0 50px;
}

.oh-blog__slider-container {
  overflow: hidden;
}

.oh-blog__slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 40px;
}

.oh-blog__slider-track .oh-blog-card {
  flex: 0 0 100%;
}

@media screen and (min-width: 768px) {
  .oh-blog__slider-track .oh-blog-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media screen and (min-width: 1024px) {
  .oh-blog__slider-track .oh-blog-card {
    flex: 0 0 calc(33.333% - 26.666px);
  }
}

.oh-blog__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-dark, #F7F5F0);
  border: 1px solid var(--color-border, #E2DED5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-dark, #111);
  z-index: 10;
  transition: all 0.3s ease;
}

.oh-blog__arrow:hover {
  background: var(--color-primary, #C0A87D);
  color: #fff;
  border-color: var(--color-primary, #C0A87D);
}

.oh-blog__arrow--left {
  left: 0;
}

.oh-blog__arrow--right {
  right: 0;
}
