@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

:root {
  --primary-pink: #ef1d6e;
  --accent-gold: #dfd45e;
  --accent-dark-gold: #cab330;
  --light-gold: #c5b05d;
  --black: #0d0d0d;
  --black-op: #F2F2F2;
  --dark-gray: #444444;
  --medium-gray: #515c5f;
  --light-gray: #f3f3f1;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --selection: #e7e7e7;
  --font-primary: "Montserrat", sans-serif;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.6s ease;
  --transition-slow: 1s cubic-bezier(0.22, 1, 0.36, 1);
  --sidebar-width: 60px !important;
  --scrollbar-width: 7px;
  --scrollbar-thumb-height: 30px;
  --scrollbar-thumb-color: var(--primary-pink);
  --scrollbar-track-color: transparent;
}

/* #intro{
  display: none !important;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0px;
  color: var(--black);
  background: var(--white);
  overflow: auto;
  scrollbar-width: none;
  /* hide main-body scrollbar — page uses custom scroll areas */
  -ms-overflow-style: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::-webkit-scrollbar {
  display: none;
}

/* ============================================================
   GLOBAL SCROLLBAR — applied to all scrollable areas
   width : 7px  |  thumb-height hint : 30px
============================================================ */

::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb-color);
  border-radius: 999px;
  min-height: var(--scrollbar-thumb-height);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent-dark-gold);
}

::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

/* Firefox global scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color);
}

/* ============================================================
   CONTAINER
============================================================ */

.container,
.e-con-inner,
.elementor-container {
  width: 100%;
  max-width: 1170px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 70px;
  padding-right: 70px;
}

/* ============================================================
   SECTION SPACING
============================================================ */

section,
.common-outer {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px;
}

/* ============================================================
   SELECTION
============================================================ */

::selection {
  background: var(--selection);
  color: var(--black);
}

::-moz-selection {
  background: var(--selection);
  color: var(--black);
}

/* ============================================================
   HEADINGS
============================================================ */

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.common-outer h1,
.common-outer h2,
.common-outer h3,
.common-outer h4,
.common-outer h5,
.common-outer h6 {
  font-family: var(--font-primary);
  color: var(--black);
  font-weight: 500;
  margin: 0;
}

/* ============================================================
   H1 — HERO TYPOGRAPHY
============================================================ */

h1,
.common-outer h1 {
  font-size: 82px;
  line-height: 122px;
  letter-spacing: -4px;
  font-weight: 500;
  max-width: 1100px;
  margin-bottom: 12px;
}

/* ============================================================
   H2 — SECTION TITLES
============================================================ */

h2,
.common-outer h2 {
  font-size: 33px;
  line-height: 56px;
  letter-spacing: -2px;
  font-weight: 500;
  max-width: 950px;
  margin-bottom: 12px;
}

/* ============================================================
   H3 — SUBHEADINGS
============================================================ */

h3,
.common-outer h3 {
  font-size: 22px;
  font-style: italic;
  line-height: 34px;
  letter-spacing: -1px;
  font-weight: 500;
  max-width: 760px;
  margin-bottom: 12px;
}

/* ============================================================
   H4 — SECTION LABELS
============================================================ */

h4,
.common-outer h4 {
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--primary-pink);
}

/* ============================================================
   H5
============================================================ */

h5,
.common-outer h5 {
  font-size: 20px;
  line-height: 42px;
  letter-spacing: -1px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* ============================================================
   H6
============================================================ */

h6,
.common-outer h6 {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--medium-gray);
  font-weight: 500;
  margin-bottom: 12px;
}

/* ============================================================
   PARAGRAPH TYPOGRAPHY
============================================================ */

p,
.common-outer p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 400;
  color: var(--dark-gray);
  max-width: 680px;
  margin-bottom: 10px;
}

/* LARGE TEXT */

.large-text {
  font-size: 28px;
  line-height: 48px;
  letter-spacing: -1px;
  max-width: 820px;
}

/* SMALL TEXT */

.small-text {
  font-size: 12px;
  line-height: 26px;
  color: var(--medium-gray);
}

/* ============================================================
   STRONG
============================================================ */

strong {
  font-weight: 600;
  color: var(--black);
}

.dark-bg strong {
  color: var(--white);
  font-weight: 600;
}

/* ============================================================
   LINKS
============================================================ */

a {
  color: var(--primary-pink);
  text-decoration: underline;
  transition: var(--transition-fast);
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 500;
}

a:hover {
  color: var(--black);
}

/* .dark-bg a:hover {
  color: var(--black);
} */

/* p a,
.common-outer p a {
  border-bottom: 1px solid rgba(13, 13, 13, 0.2);
} */

p a:hover,
.common-outer p a:hover {
  color: var(--accent-dark-gold);
  border-color: var(--accent-dark-gold);
}

/* ============================================================
   BLOCKQUOTE
============================================================ */

blockquote {
  max-width: 920px;
  margin-top: 90px;
  margin-bottom: 90px;
  padding-left: 40px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

blockquote p {
  font-size: 42px;
  line-height: 62px;
  letter-spacing: -1px;
  color: var(--black);
  font-weight: 400;
}

/* ============================================================
   LISTS
============================================================ */

ul,
ol {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 0;
  max-width: 680px;
}

ol {
  margin-left: 24px !important;
}

ul li,
ol li {
  position: relative;
  list-style: none;
  font-size: 16px;
  line-height: 22px;
  color: var(--dark-gray);
  padding-left: 30px;
  margin-bottom: 10px;
  margin-left: 12px !important;
}

ol li {
  list-style: decimal !important;
  padding-left: 8px;

}

ul li::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  left: 0px;
  top: 2px;
  /* border-radius: 50%; */
  /* background: var(--primary-pink); */
  background-image: url(../images/dark-icon.png);
  background-repeat: no-repeat !important;
  background-position: center;
  background-size: contain !important;
}

.dark-bg ul li::before {
  background-image: url(../images/white-icon.png);
}


 /* == IMAGE-WRAP-CSS_START == 
===============================================================/ */

.alignnone {
    margin: 5px 30px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 20px auto 20px auto;
}

.alignright {
    float: right;
    margin: 0px 0 20px 40px;
}

.alignleft {
    float: left;
    margin: 10px 20px 20px 0;
    width: 45%;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 30px 0;
    width: 45%;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

figcaption,
.gallery-caption,
.wp-caption-text {
    font-size: 12px !important;
}

/* / IMAGE-WRAP-CSS_END == 
=============================================================== */

/* ============================================================
   FORM TYPOGRAPHY
============================================================ */

label {
  display: block;
  font-size: 13px;
  line-height: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

input,
textarea,
select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white);
  padding: 16px 8px;
  font-family: var(--font-primary);
  font-size: 16px;
  /* line-height: 28px; */
  color: var(--off-white);
  /* text-transform: capitalize; */
  transition: var(--transition-fast);
}

input::placeholder {
  text-transform: capitalize;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--light-gray);
  color: var(--light-gray);
}

textarea {
  height: 52px;
  resize: vertical;
}

::placeholder {
  color: var(--light-gray);
  opacity: 1;
}

/* WPCF7 Specific Styling */
.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 20px;
}

.wpcf7-spinner {
  width: 35px;
}

.wpcf7-not-valid {
  /* border-bottom: 1px solid var(--accent-gold) !important; */
  border: 1px solid #ffd900 !important;
}

span.wpcf7-not-valid-tip {
  color: var(--accent-gold);
  font-size: 12px;
  display: block;
  font-weight: 500;
  display: none !important;
}

.wpcf7-response-output {
  margin: 30px 0 0 !important;
  padding: 15px 25px !important;
  border: 1px solid var(--accent-gold) !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  background-color: var(--black) !important;
  color: var(--white) !important;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unsupported .wpcf7-response-output {
  border-color: var(--accent-gold) !important;
  background-color: var(--black) !important;
  color: var(--white) !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--accent-dark-gold) !important;
  background-color: var(--accent-dark-gold) !important;
  color: var(--black) !important;
}

/* ============================================================
   BUTTON TYPOGRAPHY
============================================================ */

button,
.button,
.elementor-button {
  font-family: var(--font-primary) !important;
  font-size: 16px;
  line-height: 30px;
  padding: 10px 20px;
  letter-spacing: 2px;
  /* text-transform: capitalize; */
  font-weight: 500;
  cursor: pointer;
}

/* ============================================================
   HERO TYPOGRAPHY
============================================================ */

.hero-title {
  font-size: 170px;
  line-height: 150px;
  letter-spacing: -0.06em;
  font-weight: 500;
  max-width: 1200px;
}

.hero-subtitle {
  font-size: 26px;
  line-height: 46px;
  max-width: 680px;
  color: var(--dark-gray);
}

/* ============================================================
   INTRO TYPOGRAPHY
============================================================ */

.intro-logo {
  font-size: 110px;
  line-height: 110px;
  letter-spacing: -0.06em;
  font-weight: 500;
  text-transform: uppercase;
}

.intro-caption {
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ============================================================
   NAVIGATION TYPOGRAPHY
============================================================ */

/* header a,
.navigation a,
.menu a {
  font-size: 13px;
  line-height: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
}

header a:hover,
.navigation a:hover,
.menu a:hover {
  color: var(--primary-pink);
} */

/* ============================================================
   DARK SECTIONS
============================================================ */

.dark-bg {
  background: var(--primary-pink);
}

.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
.dark-bg h5,
.dark-bg h6,
.dark-bg p,
.dark-bg a,
.dark-bg li,
.dark-bg blockquote p {
  color: var(--white);
}

.dark-bg input,
.dark-bg textarea,
.dark-bg select {
  border-color: var(--off-white);
  color: var(--white);
}

.dark-bg ::placeholder {
  color: var(--off-white);
}

.dark-bg p {
  font-weight: 400;
}

.dark-bg ul li {
  font-weight: 400;
}

.dark-bg ol li {
  font-weight: 400;
}

/* ============================================================
   IMAGE SUPPORT
============================================================ */

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

figcaption {
  font-size: 12px;
  line-height: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin-top: 14px;
}

/* ============================================================
   ELEMENTOR FIXES
============================================================ */

.elementor-widget-heading .elementor-heading-title {
  margin-bottom: 0 !important;
}

.elementor-text-editor p:last-child {
  margin-bottom: 0 !important;
}

.elementor-widget-text-editor {
  color: inherit;
}

/* ============================================================
   LEFT FIXED STRIP
============================================================ */

body::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--primary-pink);
  z-index: 999;
}

/* ============================================================
   SIDEBAR SOCIAL
============================================================ */

.sidebar-social {
  position: fixed;
  left: 12px;
  bottom: 70px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.sidebar-social a:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--primary-pink);
}

/* ============================================================
   MAIN WRAPPER
============================================================ */

.home-hero-wrapper {
  position: relative;
  display: flex;
  padding-left: var(--sidebar-width);
  min-height: 100vh;
  opacity: 1;
  /* Ensure it's visible */
}

/* ============================================================
   SCROLL-HEADING SCROLL - HEADER
============================================================ */

.scroll-heading {
  position: fixed;
  top: 0px;
  right: calc(50% - 163px);
  padding: 10px 40px;
  z-index: 999;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  transition: all 0.4s ease;
}

.scroll-heading h1.heading-one {
  margin-bottom: 0px;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}

/* .scroll-heading .heading-two::after {
  position: absolute;
  content: '';
  width: 6px;
  height: 30px;
  border-radius: 25px;
  background: var(--primary-pink);
  top: 4px;
  left: 79px;
} */

.scroll-heading h2.heading-two {
  margin-bottom: -3px;
  color: var(--selection);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0px;
}

/* Page-specific scroll-heading colors */
.home-hero-wrapper .scroll-heading h1.heading-one {
  color: var(--primary-pink);
}

/* .home-hero-wrapper.active .scroll-heading {
  top: -100px;
}

.ethos-page-wrapper.active .scroll-heading {
  top: -100px;
}

.portfolio-wrapper.portfolio-mockup-layout.active .scroll-heading {
  top: -100px;
}

.blog-page-section.active .scroll-heading {
  top: -100px;
} */

/* ============================================================
   LEFT CONTENT AREA
============================================================ */

/* LEFT CONTENT AREA — uses global scrollbar (7px / pink) */
.hero-content-wrapper {
  width: 50%;
  position: relative;
  z-index: 2;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ============================================================
   RIGHT FIXED IMAGE
============================================================ */

.right-fixed-image {
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 99;
}

.right-fixed-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.08));
}

/* Fix Owl Carousel responsive heights */
.right-fixed-image .owl-stage-outer,
.right-fixed-image .owl-stage,
.right-fixed-image .owl-item,
.right-fixed-image .home-left-slide,
.ethos-left-image .owl-stage-outer,
.ethos-left-image .owl-stage,
.ethos-left-image .owl-item,
.ethos-left-image .ethos-left-slide {
  height: 100%;
}

.right-fixed-image img,
.ethos-left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   SECTIONS
============================================================ */

.hero-content-wrapper section {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px;
  /* border-right: 10px solid rgba(0, 0, 0, 0.05); */
}

.main-heading-section {
  justify-content: flex-start !important;
}

/* ============================================================
   MAIN GRID
============================================================ */

.main-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px;
}

/* .right-editor {
  padding-top: 20%;
} */

.right-editor .philosophy-title {
  color: var(--medium-gray);
}

.top-heading h3 {
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 80px;
  text-indent: -80px;
}

.main-right-content {
  padding-top: 30px;
  /* width: 90%; */
}

/* ============================================================
   LOGO STYLE
============================================================ */

.site-logo a,
.sidebar-logo a {
  font-size: 18px;
  letter-spacing: 5px;
  font-weight: 400;
  color: var(--primary-pink);
  text-transform: uppercase;
}

.main-grid-outer .site-logo {
  /* margin-bottom: 60px; */
  width: 280px;
  display: block;
}

.sidebar-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding-top: 30px;
  cursor: pointer;
}

.sidebar-logo img.imganimation {
  width: 35px;
  height: auto;
  will-change: transform;
  transition: transform 0.4s ease;
}

.sidebar-logo:hover img.imganimation {
  transform: rotate(30deg) scale(1.0);
}

.sidebar-logo p {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}
html[data-active-page="page-contact"] .sidebar-logo p {
  color: var(--primary-pink);
}
/* ============================================================
   GLOBAL BUTTONS
============================================================ */

.yellow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  min-width: 120px;
  height: 40px;
  text-transform: lowercase;
  letter-spacing: 0px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: none;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 10px 24px;
  background: var(--accent-dark-gold);
  position: relative;
  overflow: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

/* ── TEXT SCROLL ANIMATION ── */
/* Local inline-block wrapper that clips the scrolling text to its own exact text boundaries,
   preventing the ghost text from showing in the button's padding area. */
.yellow-btn .btn-text-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}

/* Visible text span */
.yellow-btn .btn-text {
  display: block;
  position: relative;
  transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

/* Ghost text layer — positioned exactly below .btn-text relative to its own baseline */
.yellow-btn .btn-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  display: block;
  pointer-events: none;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  text-align: center;
}

.yellow-btn:hover .btn-text {
  transform: translateY(-100%);
}

.yellow-btn:hover {
  background: var(--primary-pink);
  color: var(--white);
}

/* ── DARK BACKGROUND VARIANT ── */
.dark-bg .yellow-btn {
  background: var(--accent-dark-gold);
  color: var(--white);
}

.dark-bg .yellow-btn:hover {
  background: var(--black);
  color: var(--white);
}



/* ============================================================
   SECTION TITLES
============================================================ */

.section-title {
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 58px;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--primary-pink);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ============================================================
   SERVICES SECTION (USING ORIGINAL CLASSES)
============================================================ */

.services-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
  display: block !important;
  gap: 25px !important;
  /* padding: 30px 20px 0px 80px !important; */
  min-height: 0px !important;
}

/* SLANT BOTTOM */
/* .services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--light-gray);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 1;
} */


.services-content {
  display: flex;
  flex-direction: column;
}

/* HEADER AREA: Engagement | services */
.services-content .section-title {
  display: inline-flex;
  align-items: baseline;
}

.services-content .service-sub {
  position: relative;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-direction: column-reverse;
}

.services-text {
  /* padding: 40px 80px 40px 0px !important; */
}

.services-text .service-item {
  padding-bottom: 20px;
}

.services-content .sub-heading {
  margin-bottom: 0;
}

/* .services-section .sub-title::after {
  top: 70% !important;
}

.ethos-section .sub-title::after {
  top: 20% !important;
} */

.services-section .sub-title .yellow-btn {
  padding: 0px 20px 10px 0px;
}

.ethos-section .sub-title .yellow-btn {
  padding: 0px 0px 10px 20px;
}

/* VERTICAL YELLOW BAR */
/* .services-content .service-sub::before {
  content: "services";
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 160px;
  background: var(--accent-gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--black);
  flex-shrink: 0;
} */

.services-text {
  /* flex: 1; */
  /* max-width: 700px; */
}

/* .ethos-outer .container-service .section-content {
    width: 90%;
} */
.services-text h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  font-style: normal;
}

.services-text p {
  /* font-size: 20px; */
  /* line-height: 1.5; */
  color: #333;
  margin-bottom: 0;
}

.services-text strong {
  font-weight: 700;
  color: var(--black);
}

.services-text em {
  font-style: italic;
  font-weight: 400;
  color: #555;
}

/* BOTTOM IMAGE */
.services-large {
  position: relative;
  z-index: 5;
  bottom: 0px !important;
  padding-bottom: 40%;

}

.services-large .services-image {
  position: absolute;
  width: 420px;
  top: 0;
  right: 0;
}

.section-title {
  letter-spacing: 0px !important;
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-pink);
}

/* .section-title  .small-text::before {
    content: "|";
    margin-right: 10px;
    margin-left: 10px;
    color:var(--primary-pink);
} */
.section-title strong {
  color: var(--primary-pink);
  font-weight: 400;
  font-size: 22px;
  text-transform: lowercase;
  font-style: italic;
}

.services-image img {
  width: 100%;
  height: auto;
}

/* .section-sub-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  background: var(--accent-dark-gold);
  writing-mode: vertical-rl;
  transform: rotate(-90deg);
  font-size: 10px;
  text-transform: lowercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
  z-index: 2;
} */

/* Side-line extending from the yellow bar to the left edge */
.sub-title {
  position: relative;
}

.sub-title::after {
  /* content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 100vw;
  height: 0px;
  background: var(--medium-gray);
  border-bottom: 1px dotted var(--medium-gray);
  transform: translateY(-50%);
  pointer-events: none; */
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 100vw;
  height: 2px;
  transform: translateY(-50%);
  pointer-events: none;
  background: repeating-linear-gradient(to right, var(--medium-gray) 0 2px,
      /* dot width */
      transparent 4px 8px);
}

.services-section .section-title {
  /* margin-bottom: 30px; */
}

.services-outer {
  /* padding-bottom: 40px; */
}

/* --------------- */
.ethos-section {
  /* background: var(--light-gray); */
  /* padding: 30px 20px 20px 80px !important; */
  min-height: 0px !important;
}

.ethos-section .ethos-outer {
  display: flex;
  justify-content: center;
}

.ethos-outer .service-sub {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: column-reverse;
}

/* .section-content {
    padding: 30px 20px 20px 80px !important;
} */

/* --------------------------- */
.architecture-section {
  padding: 0px !important;
  display: block !important;
  min-height: 0px !important;
  /* margin-top: -45px; */
  border-left: 3px solid var(--off-white);

}

.architecture-content {
  background-color: var(--accent-gold);
  padding: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px !important;
}

.architecture-content h2 {
  margin-bottom: 0px;
  color: var(--medium-gray);
  font-size: 33px;
  line-height: 40px;
  max-width: 510px;
  text-align: center;
  font-style: italic;
  line-height: 34px;
  letter-spacing: -1px;
  font-weight: 500;

}

.architecture-section .section-content {
  padding: 60px 40px 20px 40px !important;
}

.architecture-section .contact-form {
  padding: 50px 80px 80px;
}

.architecture-section .section-content p {
  color: var(--white);
  max-width: 100%;
}

.architecture-section .section-content h3 {
  font-style: normal;
}

/* ============================================================
   EXPRESSIONS
============================================================ */

/* .expressions-section {
  display: flex !important;
  flex-direction: row !important;
} */

.expressions-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.expression-item {
  position: relative;
  overflow: hidden;
}

.expression-item img {
  height: 520px;
  object-fit: cover;
  transition: transform 1.4s ease;
}

.expression-item:hover img {
  transform: scale(1.04);
}

.expression-item p {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: var(--white);
  font-size: 22px;
  font-style: italic;
  z-index: 2;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-page .contact-page-wrapper .scroll-heading{
  position: fixed !important;
  border-radius: 0 0 100px 100px;
  background: #fff;
  justify-content: center;
  align-items: center;
  right: calc(50% - 190px) !important;
  transition: 0.5s ease;
  z-index: 9999;
}
.contact-page .contact-page-wrapper .scroll-heading h1{
  color: var(--primary-pink);
}
.contact-page .contact-page-wrapper .scroll-heading h2{
  color: var(--medium-gray);
}
.contact-page .contact-page-wrapper .scroll-heading h2::before {
  background: var(--primary-pink) !important;
  content: '' !important;
  display: inline-block !important;
  width: 4px !important;
  height: 24px !important;
  border-radius: 25px !important;
  right: 20px;
  position: relative;
  vertical-align: middle !important;
  opacity: 1;

}
.contact-section {
  display: block !important;
  min-height: 0px !important;
  padding: 30px 60px 10px 60px !important;
  align-items: flex-end;
  justify-content: flex-start !important;
}

.form-container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.contact-section::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/Pattern-Final.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--white);
  opacity: 0.6;
  top: 0;
  left: 0;
}

/* 
.contact-left {
  max-width: 45%;
} */

.contact-left h3 {
  font-style: normal;
  color: var(--white);
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom:0px;

}

.form-image-right {
  width: 240px;
  height: 300px;
  position: relative;
  right: 0;
  bottom: 60px;
}

.contact-left p.contact-outer {
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

.form-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-style: solid;
  border-color: #fff;
  border-width: 10px 10px 30px 10px;
  overflow: hidden;
  background: #fff;
}

.contact-form .edublink-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
}

.contact-form .eb-contact-button-wrapper {
  display: flex;
  justify-content: center;
  padding: 36px 0px 0px;
}

.contact-form .eb-contact-button-wrapper input {
  padding: 10px 0px 0px 0px;
}

.contact-form .eb-contact-button-wrapper button {
  position: relative;
  background: var(--accent-dark-gold);
  border: none;
  color: var(--white);
  width: 120px;
  height: 40px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* .contact-form .eb-contact-button-wrapper .yellow-btn::before{
background: var(--black);
} */
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

button:hover {
  border-color: var(--black);
  /* transform: translateY(-5px); */
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); */
}

button:hover::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

/* Disable default button slide-up background animation for yellow-btn */
button.yellow-btn::before,
.dark-bg button.yellow-btn::before {
  display: none !important;
}

button:active {
  /* transform: translateY(-2px); */
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

button:focus {
  outline: none;
}

.contact-form .eb-contact-button-wrapper p {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  padding-left: 60px;
}


.contact-form .eb-contact-button-wrapper button {
  padding-top: 16px;
}

.contact-left h3 {
    font-style: normal;
    color: var(--white);
    letter-spacing: normal;
    font-weight: 400;
    margin-bottom: 0px;
    text-transform: uppercase;
}

/* ============================================================
   FOOTER
============================================================ */

/* .site-footer {
  background: #efefed;
  padding:
    30px 90px 30px calc(90px + var(--sidebar-width));
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 13px;
  color: #777;
  letter-spacing: 1px;
} */

/* ============================================================
   SCROLL REVEAL
============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HORIZONTAL PAGE TRANSITION
============================================================ */

body.js-enabled .hero-content-wrapper section {
  opacity: 0;
  transform: translateX(90px);
  transition:
    opacity 1s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

body.js-enabled .hero-content-wrapper section.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   MENU SIDEBAR
============================================================ */

.mobile-sidebar {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--off-white);
  z-index: 99999;
  transition: var(--transition-slow);
  padding: 80px;
}

.mobile-sidebar.active {
  left: 0;
}

/* EXPRESSIONS WRAPPER */
.expressions-section {
  position: relative;
  padding: 50px 30px 0px 20px !important;
  display: block !important;
}

.expressions-wrapper {
  position: relative;
  max-width: 100%;
  height: 100vh;
  margin: auto;
}



.portfolio-box {
  position: absolute;
  overflow: hidden;
  background: #fff;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.portfolio-box a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.portfolio-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  z-index: 1;
  transition: var(--transition-medium);
}

.portfolio-box:hover::after {
  background: var(--accent-gold);
  opacity: 0.7;
}

/* .expressions-section .section-title h4 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
} */

/* .expressions-section .section-title {
    margin-bottom: 50px;
} */

.portfolio-content {
  position: absolute;
  padding: 10px;
  width: 100%;
  top: 40%;
  text-align: center;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-medium);
}

.portfolio-box:hover .portfolio-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.portfolio-content h3 {
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  font-style: normal;
  letter-spacing: 0px;
  font-weight: 700;
}

.portfolio-1 {
  width: 180px;
  height: 270px;
  top: 0;
  left: 40%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.portfolio-2 {
  width: 240px;
  height: 170px;
  top: 35%;
  right: 0;
  z-index: 4;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.portfolio-3 {
  width: 320px;
  height: 200px;
  left: 10px;
  top: 50%;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.portfolio-3 .portfolio-content {
  z-index: 5;
}

.portfolio-3::after {
  z-index: 3;
}

/* .expressions-section .section-title {
  position: absolute;
  left: 2%;
  top: 35%;
  z-index: 10;
  max-width: 300px;
} */

.expressions-section .section-title h2 {
  font-size: 48px;
  color: var(--primary-pink);
  line-height: 1.1;
  text-transform: capitalize;
}

.expressions-section .section-content {
  position: absolute;
  /* right: 2%;
  top: 140px; */
  right: 18%;
  top: 520px;
  z-index: 10;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expressions-section .section-content p {
  /* font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 250px; */
  display: none !important;
}

.expressions-section .yellow-btn {
  /* transform: rotate(-90deg); */
  padding: 10px 0px 0px 20px;
}

/* .expressions-section .sub-title::before {
  content: "";
  position: absolute;
  top: -68%;
  right: 150%;
  width: 140px;
  height: 140px;
  border-left: 1px dotted var(--medium-gray);
  border-bottom: 1px dotted var(--medium-gray);
  background: transparent;
  pointer-events: none;
} */

.expressions-section .sub-title::after {
  right: 0;
  left: 0;
  z-index: -1;
}

/* side bar css */

/* ====================================
DEFAULT HIDE
==================================== */

/* ====================================
   MOBILE BRANDING SIDEBAR
   ==================================== */

.mobile-branding {
  position: fixed;
  top: 0;
  left: 0;
  width: 30%;
  height: 100vh;
  background: var(--primary-pink);
  z-index: 999990;
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

/* .mobile-branding .popup-nav {
  padding-left: 40px;
} */

.mobile-branding.active {
  transform: translateX(0);
  pointer-events: auto;
}

/* Children Animations */
.popup-header,
.popup-nav,
.image-logo {
  opacity: 0;
  /* transform: translateY(20px); */
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-branding.active .popup-header,
.mobile-branding.active .popup-nav,
.mobile-branding.active .image-logo {
  opacity: 1;
  transform: translateY(0);
}

.mobile-branding.active .popup-header {
  transition-delay: 0.2s;
}

.mobile-branding.active .popup-nav {
  transition-delay: 0.3s;
}

.mobile-branding.active .image-logo {
  transition-delay: 0.4s;
}

/* ====================================
   MAIN MENU TOGGLE
   ==================================== */

#menuToggle {
  position: fixed;
  top: 14px;
  left: 14px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 11px; /* expanded tap zone — keeps bars visually in same place */
  box-sizing: content-box;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

#menuToggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-pink);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* #menuToggle:hover {
  transform: scale(1.1);
} */

.mobile-branding.active~#menuToggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ====================================
   HEADER
   ==================================== */

.popup-header {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.popup-header .heading-logo {
  width: 60%;
}

.header-menu-section {
  cursor: pointer;
  width: 30px;  /* enlarged for stylus pen */
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-menu-section span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-branding.active .header-menu-section span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-branding.active .header-menu-section span:nth-child(2) {
  opacity: 0;
}

.mobile-branding.active .header-menu-section span:nth-child(3) {
  transform: rotate(-45deg);
}

/* .heading-logo img {
  height: 25px;
  width: auto;
  filter: brightness(0) invert(1);
} */

/* ====================================
   MENU PANEL
   ==================================== */

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 4px; /* spacing now comes from padding on <a> */
  margin-left: 0px !important;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-branding.active .sidebar-menu li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-branding.active .sidebar-menu li:nth-child(1) {
  transition-delay: 0.35s;
}

.mobile-branding.active .sidebar-menu li:nth-child(2) {
  transition-delay: 0.4s;
}

.mobile-branding.active .sidebar-menu li:nth-child(3) {
  transition-delay: 0.45s;
}

.mobile-branding.active .sidebar-menu li:nth-child(4) {
  transition-delay: 0.5s;
}

.mobile-branding.active .sidebar-menu li:nth-child(5) {
  transition-delay: 0.55s;
}

.mobile-branding.active .sidebar-menu li:nth-child(6) {
  transition-delay: 0.6s;
}

.sidebar-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  line-height: 1.4;
  padding: 12px 20px 12px 0; /* enlarged hit area for stylus pen */
  transition: opacity 0.3s ease, color 0.3s ease;
}

.sidebar-menu li a:hover {
  color: var(--accent-gold);
}

.sidebar-menu li a span::before {
  content: "→";
  margin: 0 10px;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  display: inline-block;
}

.sidebar-menu li a span {
  font-weight: 300;
  margin: 0px;
  font-style: italic;
  text-transform: lowercase;
}

.sidebar-menu li a em {
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  opacity: 0.8;
}

/* ====================================
   HEADER IMAGE
   ==================================== */

.image-logo {
  margin-top: auto;
  width: 100%;
}

.popup-img {
  overflow: hidden;
}

.popup-img img {
  width: 100%;
  height: 46vh;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ====================================
   OVERLAY
   ==================================== */

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999980;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ====================================
   FOOTER
==================================== */

.site-footer {
  background: #f5f5f5;
}

.footer-logo {
  width: 180px;
}

.site-footer .container {
  padding: 20px !important;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 5px;
}

.footer-outer .footer-email a {
  font-size: 14px;
  display: inline-block;
  padding: 10px 6px; /* enlarged hit area for stylus pen */
  margin: -10px -6px; /* cancel out padding so layout is unchanged */
}

.footer-copyright {
  font-size: 14px;
  color: var(--medium-gray);
  line-height: 1.6;
  padding-right: 65px;
}

.home-hero-wrapper .footer-copyright {
  padding-right: 0px;
}

.ethos-page-wrapper .footer-copyright {
  padding-right: 85px;
}

.ethos-page-wrapper .footer-logo {
  width: 140px;
}

.footer-copyright a {
  color: var(--medium-gray);
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  padding: 10px 6px; /* enlarged hit area for stylus pen */
  margin: -10px -6px; /* cancel out padding so layout is unchanged */
}

.footer-copyright a:hover {
  color: #ff0a78;
}

/* #mobileSidebar {
    display: none;
} */

a.ScrollTop {
  display: none !important;
}

/* ============================================================
   ETHOS PAGE
============================================================ */
/* .ethos-page-wrapper .home.scroll-heading {
  right: calc(50% - 110px);
} */

.ethos-page-wrapper .scroll-heading h1.heading-one {
  color: var(--selection);
}

.ethos-page-wrapper .scroll-heading h2.heading-two {
  color: var(--primary-pink);
}

.ethos-page-wrapper {
  position: relative;
  display: flex;
  padding-left: var(--sidebar-width);
  min-height: 100vh;
}

.ethos-page-wrapper .ethos-repeater-wrapper {
  padding: 60px 40px;
}

.ethos-outer .ethos-editor-content strong {
  color: var(--primary-pink);
}

.ethos-left-image {
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 10;
  overflow: hidden;
}

.ethos-left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* .ethos-left-image .owl-item:first-child img,
.ethos-left-image img.first-slide-img {
  object-fit: contain;
} */

/* ETHOS RIGHT CONTENT — uses global scrollbar (7px / pink) */
.ethos-page-wrapper .right-content {
  width: 50%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white);
  padding: 0;
  direction: rtl;
  position: relative;
  z-index: 11;
}

.ethos-page-wrapper .right-content>* {
  direction: ltr;
}

.right-content .architecture-section {
  margin-top: 0px;
}

/* .ethos-outer {
  padding: 20px;
} */

.top-right-image {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px 0px;
}

.ethos-outer .top-right-image img {
  width: 50%;
  height: auto;
  position: relative;
  top: -32px;
  /* right: -32px; */
}

.ethos-outer .ethos-right-content .yellow-btn {
  /* transform: rotate(-90deg); */
  padding: 16px 10px 0px 0px;
}

.ethos-right-col {
  background: var(--accent-gold);
}


.ethos-outer .ethos-right-content .sub-title {
  display: none;
}

.ethos-right-content {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .ethos-repeat-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
} */

.ethos-repeat-image {
  width: 30%;
}

.ethos-repeat-image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.ethos-repeat-content {
  flex: 1;
}

.ethos-bottom-section h3 {
  max-width: 100%;
  background: var(--accent-dark-gold);
  color: var(--white);
  padding: 14px 20px;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0px;
  font-weight: 600;
  margin-bottom: 0px;
}

.ethos-bottom-section .bottom-editor {
  padding: 20px 40px 60px 40px !important;
}


/* =========================================
   SERVICES CONTENT
========================================= */
.services-content-wrapper .contact-left {
  max-width: 20%;
}

.services-content-wrapper::after {
  display: none;
}

.services-content-wrapper .scroll-heading {
  right: calc(50% - 253px);
  z-index: 1;
}


/* .services-content-wrapper .scroll-heading .heading-two::after{
  left: 170px;
} */


.services-content-wrapper .scroll-heading h2 {
  color: var(--medium-gray);
}

.services-content-wrapper .scroll-heading h1 {
  color: var(--primary-pink);
}

/* .services-content-wrapper .service-content .content-text strong {
  display: inline;
} */

/* .services-content-wrapper .service-content .content-text p {
  margin-bottom: 0px;
} */

.services-content-wrapper .architecture-section {
  margin-top: 0px;
}

.services-content-wrapper .container {
  max-width: 100% !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0px;
}

.services-content-wrapper {
  padding: 0px !important;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-left: var(--sidebar-width) !important;
}

.service-row .row-container {
  display: flex;
  /* align-items: center; */
  flex-direction: row;
  padding: 0px;
  min-height: 100vh;
}

.reverse-row .row-container {
  display: flex;
  /* align-items: center; */
  flex-direction: row-reverse;
}

.right-container {
  background: var(--black-op);
  padding: 50px;
  width: 50%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-row .service-image {
  position: relative;
  width: 75%;
  /* height: 100%; */
  padding-bottom: 90% !important;
}

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

.left-container {
  width: 50%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 50px;
  justify-content: center;
}

.service-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  /* padding: 40px 0; */
}

.services-content-wrapper .service-content h4 {
  letter-spacing: 0px;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header .page-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.services-header .page-title span {
  font-weight: 300;
  opacity: 0.8;
}

.service-row {
  width: 100%;
}

.service-row.light-bg {
  background-color: var(--off-white);
}

.service-row.white-bg {
  background-color: var(--white);
}

.service-content h3 {
  /* color: var(--medium-gray); */
  margin-bottom: 14px;
}

.service-content .content-text {
  font-size: 16px;
  /* Slightly smaller for better editorial feel */
  line-height: 1.9;
  color: var(--medium-gray);
  /* max-width: 500px; */
  /* Keep text readable */
}

.service-row.reverse-row .service-content .content-text {
  /* margin-left: auto; */
  /* Align text to the right side if it's on the right column? No, mockup shows it's left aligned within its column */
}




/* =========================================
   BLOG PAGE
========================================= */
.blog-page-section .scroll-heading {
  right: calc(50% - 190px);
}

.blog-page-section .scroll-heading h1 {
  color: var(--primary-pink);
}

.blog-page-section .scroll-heading h2 {
  color: var(--medium-gray);
}

/* .blog-page-section .contact-left {
  max-width: 18%;
} */

.blog-page-section .footer-outer .footer-email a {
  color: var(--black);
}

.blog-post-item #ajax-blog-content em strong {
  color: var(--primary-pink);
}

.blog-page-section {
  /* height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth; */
  padding: 0px !important;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-left: var(--sidebar-width) !important;
}

.blog-page-section .architecture-section {
  margin-top: 0px;
  /* padding-left: var(--sidebar-width) !important; */
}

.archive-sub-title {
  position: relative;
}

.archive-sub-title::after {
  /* content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100vw;
  height: 1px;
  background: var(--medium-gray);
  transform: translateY(-50%);
  pointer-events: none; */
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100vw;
  height: 2px;
  transform: translateY(-50%);
  pointer-events: none;
  background: repeating-linear-gradient(to right, var(--medium-gray) 0 2px, transparent 4px 8px);
}

.load-more-wrap .yellow-btn {
  padding: 0px 15px 12px 0px;
  width: 170px;
  border: none !important;
}

/* .blog-archive-dropdown .yellow-btn{
     padding: 10px 12px 12px 0px;
} */
.blog-container {
  position: relative;
  display: flex;
  /* padding-left: var(--sidebar-width); */
  min-height: 100vh;
  opacity: 1;
}

.blog-main-content {
  width: 50%;
  height: 100vh;
  overflow-y: auto;
  position: sticky;
  top: 0;
  padding: 20px;
  padding-top: 50px;
  direction: rtl;
  overscroll-behavior-y: auto;
  overflow-x: hidden;
}

.blog-main-content>* {
  direction: ltr;
}

.blog-sidebar-wrapper {
  width: 50%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  /* position: sticky; */
  top: 0;
  padding: 30px;
  padding-top: 60px;
  direction: rtl;
  background: var(--black-op);
  overscroll-behavior-y: auto;
}

.blog-main-content .blog-content .bottom-img {
  width: 100% !important;
  object-fit: cover;
  position: relative;
  height: 350px !important;
}

.blog-intro-section {
  padding: 20px;
  padding-left: 60px;
}

.blog-intro-section h2 {
  max-width: 400px;
  font-size: 22px;
  font-style: italic;
  line-height: 34px;
  letter-spacing: -1px;
  font-weight: 500;
  max-width: 760px;
  margin-bottom: 28px;
}

.blog-intro-content {
  margin-left: auto;
  max-width: 92%;
}

.blog-intro-copy {
  margin-left: auto;
}

.blog-post-item {
  padding: 24px;
}

.blog-meta-card {
  display: flex;
  gap: 14px;
  align-items: center;
}

.blog-meta-card h3 {
  /* background: var(--accent-dark-gold); */
  letter-spacing: 0px;
  font-size: 22px !important;
  /* text-transform: lowercase; */
  font-weight: 500;
  color: var(--primary-pink);
  /* padding: 8px 35px; */
  margin-bottom: 0px;
}

span.blog-meta-year {
  /* background: var(--accent-dark-gold); */
  font-size: 22px;
  /* text-transform: lowercase; */
  font-weight: 500;
  color: var(--primary-pink);
  font-style: italic;
  /* padding: 8px; */
  position: relative;
  padding-left: 20px;
}
span.blog-meta-year::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 2px;
    background: var(--primary-pink);
    transform: translateY(-50%);
    pointer-events: none;
}

.blog-meta-author {
  position: relative;
  padding-left: 20px;

}

.blog-meta-author::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--medium-gray);
  transform: translateY(-50%);
  pointer-events: none;
}

.masonry-item span {
  display: block;
  padding-top: 8px;
  color: var(--black);
  /* font-size: 12px;
  line-height: 1.4; */
  letter-spacing: 0;
  text-align: right;
  transition: opacity 0.4s ease;
  font-weight: 600;
}

.blog-intro-content>*:first-child {
  margin-top: 0;
}

.blog-intro-content>*:last-child {
  margin-bottom: 0;
}

.blog-sidebar {
  width: 100%;
}

.masonry-grid {
  column-count: 2;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

.masonry-item a {
  display: block;
  text-decoration: none;
}

.sidebar-image {
  overflow: hidden;
}

.sidebar-image img {
  width: 100%;
  display: block;
  transition: all 0.4s ease;
  object-fit: cover;
  border: 4px solid transparent;
}



.masonry-item:hover img,
.masonry-item .active img {
  border-color: var(--accent-dark-gold);
}

.blog-sidebar-wrapper .btn-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 30px;
}


/* #load-more-blogs {
  background: #c7b315;
  color: #fff;
  border: none;
  padding: 20px 45px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s ease;
}

#load-more-blogs:hover {
  background: #222;
}
 */


#archive-filter {
  width: 170px;
  height: 40px;
  background: var(--accent-dark-gold);
  color: var(--white);
  padding: 0 25px 0 15px;
  font-size: 16px;
  letter-spacing: 0px;
  text-transform: lowercase;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  display: block;
  font-weight: 600;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: none;
}

#archive-filter:hover {
  background: var(--primary-pink);
}

#archive-filter option {
  background: var(--white);
  color: var(--black);
}


.blog-archive-dropdown {
  position: relative;
  display: inline-block;
}

.blog-archive-dropdown::before {
  content: "\25BE";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 16px;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.3s ease;
}

.blog-archive-dropdown.dropdown-open::before {
  transform: translateY(-50%) rotate(180deg);
}


.blog-post-item {
  animation: fadeIn 0.4s ease;
}

.blog-top {
  display: flex;
  gap: 40px;
  margin-bottom: 10px;
}

.blog-feature-image {
  width: 35%;
}

.blog-feature-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.blog-heading-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.blog-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 15px;
  display: block;
}

.blog-heading-content h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #222;
  font-weight: 500;
}

.blog-excerpt {
  font-size: 15px;
  line-height: 2;
  color: #666;
}


/* .blog-content img.alignleft {
  width: 45%;
  height: auto;
  float: left;
  margin: 10px 20px 20px 0px;
}

.blog-content img.alignright {
  width: 45%;
  height: auto;
  float: right;
  margin: 0px 0px 20px 20px;
} */


.custom-loader {
  width: 100%;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-loader img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-sidebar-wrapper::-webkit-scrollbar,
.blog-main-content::-webkit-scrollbar {
  width: 6px;
}

.blog-sidebar-wrapper::-webkit-scrollbar-track,
.blog-main-content::-webkit-scrollbar-track {
  background: #eee;
}

.blog-sidebar-wrapper::-webkit-scrollbar-thumb,
.blog-main-content::-webkit-scrollbar-thumb {
  background: var(--primary-pink);
}
.news-letter-outer {
  padding: 20px;
  background:var(--primary-pink);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.news-letter{
    position: relative;
    z-index: 1;
}
.news-letter a {
  display: inline-block;
  padding: 10px 14px;
  margin: -10px -14px;
  position: relative;
  z-index: 2;
}
.news-letter button,
.news-letter input[type="submit"],
.news-letter .yellow-btn {
  padding: 12px 24px !important;
}
.news-letter-outer p {
  margin-bottom: 0px;
}

.news-letter-outer::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/Pattern-Final-v1-black.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--white);
    opacity: 0.1;
    top: 0;
    left: 0;
}

.blog-main-content.active{
  display: block;
}
/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-page .scroll-heading {
  right: calc(50% - 190px);
}

.contact-page .scroll-heading h1,
.contact-page .scroll-heading h2 {
  color: var(--accent-gold);
}

html[data-active-page="page-contact"] body::before {
  background: var(--white) !important;
}

html[data-active-page="page-contact"] .sidebar-social a {
  background: var(--primary-pink) !important;
  color: var(--white) !important;
}

html[data-active-page="page-contact"] .sidebar-social a:hover {
  background: var(--white) !important;
  color: var(--primary-pink) !important;
}

html[data-active-page="page-contact"] .sidebar-logo img.imganimation {
  opacity: 0;
  filter: brightness(0) saturate(100%) invert(31%) sepia(95%) saturate(3530%) hue-rotate(320deg) brightness(96%) contrast(96%);
  -webkit-filter: brightness(0) saturate(100%) invert(31%) sepia(95%) saturate(3530%) hue-rotate(320deg) brightness(96%) contrast(96%);
}

html[data-active-page="page-contact"] .sidebar-logo::before {
  position: absolute;
  content: '';
  width: 35px;
  height: 35px;
  background: url(../images/white-icon-pink.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 29px;
  left: 9px;
  transition: 0.5s ease;
}

html[data-active-page="page-contact"] .sidebar-logo:hover::before {
  transform: rotate(30deg) scale(1.0);
  transition: 0.5s ease;
}

html[data-active-page="page-contact"] .sidebar-vertical-logo img {
  opacity: 0;
  filter: brightness(0) saturate(100%) invert(31%) sepia(95%) saturate(3530%) hue-rotate(320deg) brightness(96%) contrast(96%);
  -webkit-filter: brightness(0) saturate(100%) invert(31%) sepia(95%) saturate(3530%) hue-rotate(320deg) brightness(96%) contrast(96%);
}

html[data-active-page="page-contact"] .sidebar-vertical-logo a{
  position: relative;
}

html[data-active-page="page-contact"] .sidebar-vertical-logo a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/mrtnz-site-logo-pink.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: -1px;
  transition: 0.5s ease;
}

html[data-active-page="page-contact"] .page-nav-arrows .prev-arrow {
  color: var(--primary-pink);
  background: #dfd45ea3;
}

.contact-page {
  /* height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth; */
  padding: 0px !important;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-left: var(--sidebar-width) !important;
}

.contact-page-wrapper {
  position: relative;
  display: flex;
  /* padding-left: var(--sidebar-width); */
  /* height: 100vh; */
}

.contact-page-wrapper .contact-page-section .section-content h3 {
  font-style: normal;
}

.contact-page-wrapper .contact-page-section {
  display: flex;
  flex-direction: column;
  padding: 80px 20px 20px 50px;
  width: 50%;
  justify-content: center !important;
}

/* .contact-page-wrapper .contact-section .contact-left {
  max-width: 80%;
} */

.contact-page-wrapper .contact-section .contact-left {
  padding-left: 25px;
}

.contact-page-wrapper .contact-section {
  width: 50%;
  padding: 80px 0px 20px !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center !important;
}

.contact-page-wrapper .left-content strong {
  color: var(--white);
}

.contact-page-wrapper .left-content p.contact-outer {
  margin-top: 22px;
  margin-bottom: 22px;
}

.contact-page-wrapper .contact-section .form-container {
  flex-direction: column-reverse;
}

.contact-page-wrapper .contact-section .form-image-right {
  bottom: 0px;
}

.contact-page .contact-form {
  padding: 30px;
}
.contact-page .contact-section::after{
  border-top: 0px solid var(--white);
}

.cky-btn:hover {
    opacity: 1 !important;
}
.cky-notice-btn-wrapper .cky-btn {
    color: var(--primary-pink) !important;
    border: 1px solid var(--primary-pink) !important;
}
.cky-notice-btn-wrapper .cky-btn-accept {
    color: var(--white) !important;
    border: 0px solid var(--primary-pink) !important;
    background: var(--primary-pink) !important;
}
/* -------------------------- */

/* ============================================================
   HOMEPAGE DESKTOP PAGE-LIKE SECTIONS
============================================================ */
/* @media (min-width: 992px) {
  .hero-content-wrapper section {
    min-height: 100vh;
  }

  .main-heading-section {
    padding: 60px 80px !important;
  }

  .services-section {
    padding: 60px 80px !important;
    min-height: 100vh !important;
  }

  .ethos-section {
    padding: 60px 80px !important;
    min-height: 100vh !important;
  }

  .expressions-section {
    min-height: 100vh !important;
  }

  .architecture-section {
    min-height: 100vh !important;
  }
} */

.footer-section {
  padding: 0px !important;
}

/* --------------------------------------------------
   404 ERROR PAGE (FULL HEIGHT + SIDEBAR)
-------------------------------------------------- */

.page-notfound-section {
  height: 100vh;
  overflow: hidden;
  padding: 0 !important;
  position: relative;
}

.page-notfound-section .container {
  height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-notfound-section h1 {
  color: var(--primary-pink);
}

.page-notfound-section .container center {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.page-notfound-section .container h1 {
  font-size: 48px;
  line-height: 52px;
  margin-bottom: 0px;
}

.page-notfound-section .container p {
  max-width: 500px;
}

.error-page .yellow-btn {
  padding-top: 5px;
}

.page-notfound-section::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--white);
  opacity: 0.1;
  top: 0;
  left: 0;
}