@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  /* Pure Neutral Palette */
  --oe-black: #111111;
  --oe-charcoal: #2a2826;
  --oe-dark: #3d3a37;
  --oe-earth: #5c5651;
  --oe-stone: #7a746e;
  --oe-ash: #9c958e;
  --oe-sand: #b8b0a7;
  --oe-linen: #d4cec7;
  --oe-pearl: #e8e4df;
  --oe-cream: #f0ece7;
  --oe-ivory: #f7f5f2;
  --oe-white: #fdfcfb;
  --oe-parchment: #f4f1ec;

  --oe-shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.04);
  --oe-shadow: 0 6px 24px rgba(17, 17, 17, 0.06);
  --oe-shadow-lg: 0 16px 48px rgba(17, 17, 17, 0.08);
  --oe-shadow-xl: 0 24px 64px rgba(17, 17, 17, 0.1);

  --oe-font-display: 'Playfair Display', serif;
  --oe-font-body: 'Inter', sans-serif;
  --oe-font-accent: 'Cormorant Garamond', serif;

  --oe-radius: 0;
}

/* ===== RESET & WORDPRESS OVERRIDE ===== */
.oe-page,
.oe-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.oe-page a {
  text-decoration: none;
  /* color: inherit; */
}

.oe-page img {
  display: block;
}

.entry-content:has(.oe-page),
.page-content:has(.oe-page),
.site-content:has(.oe-page),
.elementor-widget-container:has(.oe-page) {
  max-width: 100% !important;
  padding: 0 !important;
  width: 100% !important;
}

.oe-page {
  font-family: var(--oe-font-body);
  color: var(--oe-earth);
  background: var(--oe-white);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
}

/* ===== FULLWIDTH ===== */
.oe-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ===== CONTAINER ===== */
.oe-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ===================================================
   HERO — FULL-SCREEN CENTERED
   =================================================== */
.oe-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.oe-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.oe-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oe-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(17, 17, 17, 0.5) 0%, rgba(17, 17, 17, 0.8) 100%);
}

/* Decorative side lines */
.oe-hero__side-line {
  position: absolute;
  top: 80px;
  bottom: 80px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.oe-hero__side-line--left {
  left: 50px;
}

.oe-hero__side-line--right {
  right: 50px;
}

.oe-hero__side-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), transparent);
  animation: oeLineGlow 3s ease-in-out infinite alternate;
}

/* Centered content */
.oe-hero__center {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  padding: 0 40px;
}

.oe-hero__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  animation: oeFadeUp 0.8s ease 0.2s both;
}

.oe-hero__kicker-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.oe-hero__title {
  font-family: var(--oe-font-display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  color: var(--oe-white);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: oeFadeUp 0.8s ease 0.4s both;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.oe-hero__tagline {
  font-family: var(--oe-font-accent);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--oe-sand);
  margin-bottom: 24px;
  animation: oeFadeUp 0.8s ease 0.55s both;
}

.oe-hero__desc {
  font-size: 0.95rem;
  color: var(--oe-white);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 40px;
  animation: oeFadeUp 0.8s ease 0.7s both;
}

/* CTA Button */
.oe-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 36px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: oeFadeUp 0.8s ease 0.85s both;
}

.oe-hero__cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--oe-white);
  transform: translateY(-2px);
}

.oe-hero__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.oe-hero__cta:hover svg {
  transform: translateY(3px);
}

/* Bottom Info Bar */
.oe-hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 60px;
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: oeFadeUp 0.8s ease 1s both;
}

.oe-hero__bottom-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
}

.oe-hero__bottom-val {
  font-family: var(--oe-font-display);
  font-size: 1.4rem;
  color: var(--oe-white);
  line-height: 1;
}

.oe-hero__bottom-lbl {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.oe-hero__bottom-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

.oe-hero__bottom-item--location .oe-hero__bottom-val {
  font-size: 1.1rem;
}

.oe-hero__bottom-item--location .oe-hero__bottom-lbl {
  letter-spacing: 1px;
  text-transform: none;
  font-size: 0.78rem;
  color: var(--oe-white);
}

@keyframes oeLineGlow {
  0% {
    top: 0;
  }

  100% {
    top: calc(100% - 80px);
  }
}


/* ===================================================
   MARQUEE STRIP
   =================================================== */
.oe-marquee {
  padding: 24px 0;
  background: var(--oe-charcoal);
  overflow: hidden;
  position: relative;
}

.oe-marquee__track {
  display: flex;
  gap: 60px;
  animation: oeMarquee 25s linear infinite;
  white-space: nowrap;
}

.oe-marquee__item {
  font-family: var(--oe-font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--oe-white);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.oe-marquee__item::after {
  content: '◆';
  font-size: 0.45rem;
  color: var(--oe-stone);
  font-style: normal;
}

/* ===================================================
   ABOUT — EDITORIAL 3-COLUMN
   =================================================== */
.oe-about {
  padding: 140px 0;
}

.oe-about__grid {
  display: grid;
  grid-template-columns: 0.35fr 0.3fr 0.35fr;
  gap: 50px;
  align-items: start;
}

.oe-about__col-left {
  padding-top: 60px;
}

.oe-about__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--oe-ash);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.oe-about__label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--oe-sand);
}

.oe-about__heading {
  font-family: var(--oe-font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--oe-charcoal);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 28px;
}

.oe-about__heading em {
  font-style: italic;
  color: var(--oe-stone);
}

.oe-about__text {
  font-size: 1.1rem;
  color: var(--oe-ash);
  line-height: 1.9;
}

/* Center image column */
.oe-about__col-center {
  position: relative;
}

.oe-about__img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.oe-about__img-caption {
  background: var(--oe-charcoal);
  color: var(--oe-pearl);
  padding: 18px 24px;
  margin-top: 0;
}

.oe-about__img-caption-sm {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--oe-sand);
  margin-bottom: 3px;
}

.oe-about__img-caption-lg {
  font-family: var(--oe-font-display);
  font-size: 1rem;
}

/* Right column */
.oe-about__col-right {
  padding-top: 160px;
}

.oe-about__pull-quote {
  font-family: var(--oe-font-accent);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--oe-dark);
  line-height: 1.55;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--oe-linen);
}

.oe-about__text-secondary {
  font-size: 1.1rem;
  color: var(--oe-ash);
  line-height: 1.85;
}

.oe-about__img-secondary {
  margin-top: 40px;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* ===================================================
   PHILOSOPHY BAND
   =================================================== */
.oe-philosophy {
  padding: 100px 0;
  background: var(--oe-parchment);
  text-align: center;
  position: relative;
}

.oe-philosophy__number {
  font-family: var(--oe-font-display);
  font-size: 8rem;
  color: var(--oe-pearl);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}

.oe-philosophy__text {
  font-family: var(--oe-font-accent);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--oe-dark);
  font-style: italic;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.oe-philosophy__attribution {
  margin-top: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--oe-sand);
}

/* ===================================================
   SERVICES — STACKED HORIZONTAL PANELS
   =================================================== */
.oe-services {
  padding: 140px 0;
}

.oe-services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}

.oe-services__header-left .oe-about__label {
  margin-bottom: 20px;
}

.oe-services__heading {
  font-family: var(--oe-font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--oe-charcoal);
  font-weight: 400;
  line-height: 1.15;
}

.oe-services__header-right {
  padding-bottom: 6px;
}

.oe-services__header-text {
  font-size: 1rem;
  color: var(--oe-ash);
  line-height: 1.85;
  max-width: 480px;
}

/* Service panels */
.oe-panels {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.oe-panel {
  display: grid;
  grid-template-columns: 80px 1fr 1.8fr;
  gap: 0;
  padding: 40px 0;
  border-bottom: 1px solid var(--oe-pearl);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
}

.oe-panel:first-child {
  border-top: 1px solid var(--oe-pearl);
}

.oe-panel:hover {
  padding-left: 20px;
  background: var(--oe-ivory);
}

.oe-panel__num {
  font-family: var(--oe-font-display);
  font-size: 1.6rem;
  color: var(--oe-linen);
  padding-top: 4px;
  transition: color 0.4s;
}

.oe-panel:hover .oe-panel__num {
  color: var(--oe-stone);
}

.oe-panel__title {
  font-family: var(--oe-font-display);
  font-size: 1.3rem;
  color: var(--oe-charcoal);
  padding-top: 4px;
  transition: color 0.4s;
}

.oe-panel__desc {
  font-size: 1rem;
  color: var(--oe-ash);
  line-height: 1.75;
  max-width: 560px;
}

/* Accent bar on hover */
.oe-panel::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--oe-charcoal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.oe-panel:hover::after {
  transform: scaleY(1);
}

/* ===================================================
   WE CARE — FULL IMAGE + TEXT OVERLAY
   =================================================== */
.oe-care {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.oe-care__bg {
  position: absolute;
  inset: 0;
}

.oe-care__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oe-care__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(17, 17, 17, 0.88) 0%,
      rgba(17, 17, 17, 0.65) 50%,
      rgba(17, 17, 17, 0.3) 100%);
}

.oe-care__content {
  position: relative;
  z-index: 2;
  padding: 100px 90px;
  max-width: 640px;
}

.oe-care__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--oe-sand);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.oe-care__label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--oe-sand);
}

.oe-care__heading {
  font-family: var(--oe-font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--oe-white);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

.oe-care__text {
  font-size: 1rem;
  color: var(--oe-sand);
  line-height: 1.85;
  margin-bottom: 44px;
}

.oe-care__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.oe-care__feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.oe-care__feat-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--oe-sand);
}

.oe-care__feat-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--oe-pearl);
  margin-bottom: 2px;
}

.oe-care__feat-desc {
  font-size: 0.87rem;
  color: var(--oe-ash);
  line-height: 1.5;
}

/* ===================================================
   GALLERY — SCATTERED / EDITORIAL GRID
   =================================================== */
.oe-gallery {
  padding: 140px 0 100px;
  background: var(--oe-ivory);
}

.oe-gallery__header {
  text-align: center;
  margin-bottom: 70px;
}

.oe-gallery__header .oe-about__label {
  justify-content: center;
}

.oe-gallery__heading {
  font-family: var(--oe-font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--oe-charcoal);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
}

.oe-gallery__sub {
  font-family: var(--oe-font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--oe-ash);
}

.oe-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 280px;
  gap: 20px;
}

.oe-gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.oe-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
  filter: grayscale(30%);
}

.oe-gallery__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.oe-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.oe-gallery__item:hover::after {
  opacity: 1;
}

.oe-gallery__item-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--oe-font-display);
  font-size: 1rem;
  color: white;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.oe-gallery__item:hover .oe-gallery__item-label {
  opacity: 1;
  transform: translateY(0);
}

/* Grid positions */
.oe-gallery__item:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1;
}

.oe-gallery__item:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1;
}

.oe-gallery__item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1;
}

.oe-gallery__item:nth-child(4) {
  grid-column: 1 / 5;
  grid-row: 2;
}

.oe-gallery__item:nth-child(5) {
  grid-column: 5 / 13;
  grid-row: 2;
}

/* ===================================================
   WHY CHOOSE US — MINIMAL COLUMNS
   =================================================== */
.oe-why {
  padding: 120px 0;
  background: var(--oe-charcoal);
}

.oe-why__header {
  text-align: center;
  margin-bottom: 80px;
}

.oe-why__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--oe-sand);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.oe-why__label::before,
.oe-why__label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--oe-stone);
}

.oe-why__heading {
  font-family: var(--oe-font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--oe-pearl);
  font-weight: 400;
  line-height: 1.15;
}

.oe-why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.oe-why__col {
  text-align: center;
  padding: 48px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.oe-why__col:last-child {
  border-right: none;
}

.oe-why__col::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--oe-sand);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.oe-why__col:hover {
  background: rgba(255, 255, 255, 0.03);
}

.oe-why__col:hover::after {
  transform: scaleX(1);
}

.oe-why__col-num {
  font-family: var(--oe-font-display);
  font-size: 2.8rem;
  color: var(--oe-stone);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}

.oe-why__col:hover .oe-why__col-num {
  color: var(--oe-pearl);
}

.oe-why__col-title {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--oe-sand);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

/* ===================================================
   CONTACT — EDITORIAL 2-COL
   =================================================== */
.oe-contact {
  padding: 140px 0;
  background: var(--oe-white);
}

.oe-contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.oe-contact__left {}

.oe-contact__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--oe-ash);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.oe-contact__label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--oe-sand);
}

.oe-contact__heading {
  font-family: var(--oe-font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--oe-charcoal);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

.oe-contact__subtext {
  font-size: 0.92rem;
  color: var(--oe-ash);
  line-height: 1.85;
  margin-bottom: 50px;
}

.oe-contact__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--oe-charcoal);
  color: var(--oe-pearl);
  padding: 18px 40px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.oe-contact__cta-btn:hover {
  background: var(--oe-white);
  transform: translateY(-2px);
  box-shadow: var(--oe-shadow-lg);
}

.oe-contact__cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.oe-contact__cta-btn:hover svg {
  transform: translateX(4px);
}

/* Contact details */
.oe-contact__right {}

.oe-contact__details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.oe-contact__detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 36px 0;
  border-bottom: 1px solid var(--oe-pearl);
  transition: all 0.3s ease;
}

.oe-contact__detail:first-child {
  border-top: 1px solid var(--oe-pearl);
}

.oe-contact__detail:hover {
  padding-left: 12px;
}

.oe-contact__detail-icon {
  width: 48px;
  height: 48px;
  background: var(--oe-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.oe-contact__detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--oe-ash);
  margin-bottom: 6px;
}

.oe-contact__detail-value {
  font-size: 0.92rem;
  color: var(--oe-dark);
  line-height: 1.7;
}

.oe-contact__detail-value a {
  color: var(--oe-stone);
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
}

.oe-contact__detail-value a:hover {
  color: var(--oe-charcoal);
  border-bottom-color: var(--oe-linen);
}

/* ===================================================
   FOOTER CTA
   =================================================== */
.oe-footer-cta {
  background: var(--oe-cream);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.oe-footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--oe-linen);
}

.oe-footer-cta__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.oe-footer-cta__title {
  font-family: var(--oe-font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--oe-charcoal);
  margin-bottom: 16px;
  line-height: 1.1;
}

.oe-footer-cta__title em {
  font-style: italic;
  color: var(--oe-stone);
}

.oe-footer-cta__sub {
  font-family: var(--oe-font-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--oe-ash);
  margin-bottom: 44px;
}

.oe-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--oe-charcoal);
  color: var(--oe-pearl);
  padding: 18px 48px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.oe-footer-cta__btn:hover {
  background: var(--oe-black);
  transform: translateY(-3px);
  box-shadow: var(--oe-shadow-lg);
}

.oe-footer-cta__btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.oe-footer-cta__btn:hover svg {
  transform: translateX(5px);
}

.oe-footer-cta__trust {
  margin-top: 36px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--oe-sand);
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes oeFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes oeScrollBar {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

@keyframes oeMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.oe-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.oe-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .oe-wrap {
    padding: 0 40px;
  }

  .oe-hero__side-line {
    display: none;
  }

  .oe-hero__bottom {
    padding: 24px 30px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .oe-hero__bottom-item {
    padding: 0 20px;
  }

  .oe-about__grid {
    grid-template-columns: 1fr 1fr;
  }

  .oe-about__col-right {
    padding-top: 0;
  }

  .oe-about__col-center {
    order: -1;
    grid-column: span 2;
  }

  .oe-about__img-main {
    height: 380px;
  }

  .oe-services__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .oe-panel {
    grid-template-columns: 60px 1fr;
  }

  .oe-panel__desc {
    grid-column: 2;
    margin-top: 8px;
  }

  .oe-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }

  .oe-gallery__item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .oe-gallery__item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .oe-gallery__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .oe-gallery__item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .oe-gallery__item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .oe-why__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .oe-why__col:nth-child(3) {
    border-right: none;
  }

  .oe-contact__layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .oe-wrap {
    padding: 0 24px;
  }

  .oe-hero__title {
    font-size: 3.5rem;
    letter-spacing: -1px;
  }

  .oe-hero__tagline {
    font-size: 1.3rem;
  }

  .oe-hero__bottom {
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
  }

  .oe-hero__bottom-divider {
    width: 48px;
    height: 1px;
  }

  .oe-hero__bottom-item {
    padding: 0;
  }

  .oe-about {
    padding: 80px 0;
  }

  .oe-about__grid {
    grid-template-columns: 1fr;
  }

  .oe-about__col-center {
    grid-column: span 1;
  }

  .oe-about__col-left {
    padding-top: 0;
  }

  .oe-about__img-main {
    height: 300px;
  }

  .oe-philosophy {
    padding: 70px 24px;
  }

  .oe-philosophy__number {
    font-size: 5rem;
  }

  .oe-services {
    padding: 80px 0;
  }

  .oe-panel {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .oe-panel__num {
    margin-bottom: 8px;
  }

  .oe-panel__desc {
    margin-top: 8px;
  }

  .oe-care__content {
    padding: 60px 24px;
  }

  .oe-care__features {
    grid-template-columns: 1fr;
  }

  .oe-gallery {
    padding: 80px 0;
  }

  .oe-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }

  .oe-gallery__item:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .oe-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oe-why__col:nth-child(2n) {
    border-right: none;
  }

  .oe-why__col:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .oe-contact {
    padding: 80px 0;
  }

  .oe-contact__cta-btn {
    width: 100%;
    justify-content: center;
  }

  .oe-footer-cta {
    padding: 80px 24px;
  }
}

@media (max-width: 480px) {
  .oe-hero__title {
    font-size: 2.8rem;
  }

  .oe-hero__desc {
    font-size: 0.88rem;
  }

  .oe-hero__kicker-line {
    width: 24px;
  }

  .oe-why__grid {
    grid-template-columns: 1fr;
  }

  .oe-why__col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .oe-why__col:last-child {
    border-bottom: none;
  }
}