/*   
Theme Name: HADO
Description: This is the website for the HADO
Author: -
Author URI: 
Version: 1.1.0
Tags: full
License: 
License URI: 
*/

/*

TABLE OF CONTENTS

1. Variables
2. Custom CSS

*/

/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/




:root {
	/** Font default */
	--font-family-default: "Sora", sans-serif;
	--font-family-title: "Sora", sans-serif;
	--font-size-default: 16px;
	--font-size-title: 18px;
	--font-color-default: #000000;
	--font-color-title: #6c757d;
	/** Use for input, button, and any other element */
	--primary: #A38056;
	--secondary: #1E1E1E;
  --accent: #9A9995;
  --accent2: #F4F2EE;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f7f7f7;
	--dark: #070F12;
  
  --default-transition: all 0.3s ease;
}


/* Global */
html * {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-default) !important;
  font-size: var(--font-size-default);
  background: #fff;
  color: var(--font-color-default);
  margin: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

body.overflow {
  overflow: hidden;
}

.site-canvas {
  display: block;
  width: 100%;
}

.custom-container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

a,
a:focus,
a:hover,
a:focus-within {
  text-decoration: none;
}

input,
textarea,
button {
	outline: none;
}

.home video {
  cursor: pointer;
}

.rel {
  position: relative;
}

.blk {
  display: block !important;
}

.no-padding {
  padding-right: 0 !important;
}

.disable {
  pointer-events: none;
}

.img-object {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-bg {
  background: #fff;
}

.img-wrapper {
  position: relative;
}

.img-wrapper canvas {
  display: block;
  width: 100%;
} 

.img-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-c {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* .bg-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.bg-canvas-rel {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
} */

/* .ios-true .bg-canvas,
.safari .bg-canvas,
.ios-true .bg-fixed,
.safari .bg-fixed {
  background-attachment: scroll !important;
} */

[class*="-wrap"].rel {
  position: relative;
  overflow: hidden;
  --parallax-buffer: 20%; /* desktop default */
}

.bg-canvas.bg-fixed {
  position: absolute;
  top: calc(var(--parallax-buffer) * -1);
  left: 0;
  width: 100%;
  height: calc(100% + (var(--parallax-buffer) * 2));
  background-size: cover;
  background-position: center;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

[class*="-wrap"].rel > [class*="-container"] {
  position: relative;
  z-index: 1;
}

/* Smaller screens scroll shorter distances relative to viewport,
   so they need a smaller buffer — this keeps the zoom feel consistent */
@media (max-width: 1024px) {
  [class*="-wrap"].rel {
    --parallax-buffer: 12%;
  }
}

@media (max-width: 600px) {
  [class*="-wrap"].rel {
    --parallax-buffer: 8%;
  }
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-canvas-g {
  filter: grayscale(1);
}

.bg-fixed {
  /* background-attachment: fixed !important; */
}

.bw {
  filter: grayscale(1);
}

.ease {
  transition: var(--default-transition);
  -webkit-transition: var(--default-transition);
  -moz-transition: var(--default-transition);
  -o-transition: var(--default-transition);
}

.ease-1 {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

#main-wrapper {
  overflow: hidden;
}

.show-mb {
  display: none !important;
}

.txt-up {
  text-transform: uppercase;
}

.zi-100 {
  z-index: 100;
}

.rel-z {
  position: relative;
  z-index: 100;
}

.hidden {
  display: none !important;
}

.no-margin {
  margin: 0 !important;
}

.n-app {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  outline: none;
  background: transparent;
  border: 0;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

input,
textarea,
button {
  border-radius: 0 !important;
}

/* Flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.custom-flex {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.ai-fs {
  align-items: flex-start;
}

.ai-fe {
  align-items: flex-end;
}

.ai-c {
  align-items: center;
}

.jc-fs {
  justify-content: flex-start;
}

.jc-fe {
  justify-content: flex-end;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.fd-c{
  flex-direction: column;
}

.fd-rr {
  flex-direction: row-reverse;
}

/* Header */
.header {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 15px;
}

.header-container {
  max-width: 1856px;
  width: 100%;
  margin: 0 auto;
}

.header-logo a {
  display: flex;
}

.header-btn {
  max-width: 184px;
  width: 100%;
  margin: 0 40px 0 auto;
}

.header-btn a {
  max-width: 184px;
  width: 100%;
  height: 60px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(10px,0.63vw,12px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: var(--default-transition);
}

.header-btn a:hover {
  background: var(--secondary);
  color: #fff;
}

/* ===== Your existing menu-btn-inner styles stay exactly as-is ===== */
/* Adding: active/open state so the icon animates into an X */
.menu-btn-inner {
  height: 80px;
  width: 80px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: var(--default-transition);
}

.menu-btn-inner * {
  transition: var(--default-transition);
}

.menu-btn-inner i {
  display: block;
  width: 40px;
  height: 17px;
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  position: relative;
}

.menu-btn-inner i::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--secondary);
  margin: auto;
  transition: var(--default-transition);
}

.menu-btn-inner span {
  display: block;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin: 10px 0 0;
  text-transform: uppercase;
}

.menu-btn-inner:hover {
  background: var(--secondary);
}

.menu-btn-inner:hover i {
  border-color: #fff;
}

.menu-btn-inner:hover i::before {
  background: #fff;
}

.menu-btn-inner:hover span {
  color: #fff;
}

/* Optional: swap the "Menu" label to "Close" when open via JS text swap,
   handled in JS below instead of CSS content-swap for accessibility */

/* ===== Overlay ===== */
.site-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 30, 30, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1010;
}
.site-nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ===== Sliding panel ===== */
.site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(480px, 100%);
    background: var(--primary, #1E1E1E);
    color: #F4F2EE;
    z-index: 1020;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.site-nav.is-active {
    transform: translateX(0);
}

.site-nav-inner {
    padding: 100px 60px 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-nav-close {
    position: absolute;
    top: 32px;
    right: 40px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}
.site-nav-close span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #F4F2EE;
}
.site-nav-close span:first-child { transform: rotate(45deg); }
.site-nav-close span:last-child  { transform: rotate(-45deg); }

/* ===== Menu list (default WP markup) ===== */
.primary-menu,
.primary-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu > li {
    border-bottom: 1px solid rgba(244, 242, 238, 0.12);
    position: relative;
}

.primary-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    color: #F4F2EE;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.primary-menu > li > a:hover,
.primary-menu > li > a:focus {
    color: var(--secondary);
    padding-left: 8px;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
    color: #fff;
}

/* Submenu toggle button (injected by JS) */
.submenu-toggle {
    position: absolute;
    top: 10px;
    right: 0;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}
.submenu-toggle::before,
.submenu-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}
.submenu-toggle::before {
    width: 10px;
    height: 1px;
    transform: translate(-50%, -50%);
}
.submenu-toggle::after {
    width: 1px;
    height: 10px;
    transform: translate(-50%, -50%);
}
.submenu-toggle[aria-expanded="true"]::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.submenu-toggle[aria-expanded="true"]::before {
    background: #fff;
}

.sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.menu-item-has-children.is-open > .sub-menu {
    max-height: 500px;
}

.sub-menu li a {
    display: block;
    padding: 12px 0 12px 20px;
    color: #fff;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-left: 1px solid rgba(163, 128, 86, 0.4);
    transition: color 0.2s ease;
}
.sub-menu li a:hover {
    color: var(--secondary);
}

.site-nav-meta {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(244, 242, 238, 0.12);
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .site-nav { width: 100%; }
    .site-nav-inner { padding: 90px 32px 40px; }
    .site-nav-close { right: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    .site-nav,
    .site-nav-overlay,
    .sub-menu,
    .menu-btn-inner i,
    .menu-btn-inner i::before {
        transition: none;
    }
}

/* Hero */
.hero-video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 750px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 3;
    padding: 15px;
}

.hero-content {
    max-width: 1736px;
    width: 100%;
    margin: auto;
    padding-top: 10vw;
}

.hero-content h1 {
    color: #fff;
    font-weight: 300;
    font-size: clamp(45px,4.17vw,80px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 25px 0 0;
}

.hero-content p {
    font-size: clamp(15px,0.83vw,16px);
    font-weight: 300;
    color: #fff;
    line-height: 1.8;
    max-width: 450px;
    width: 100%;
    margin: clamp(25px,1.82vw,35px) 0 clamp(35px,2.34vw,45px);
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap; /* so it stacks nicely on small mobile screens */
}

/* Heading */
.heading-sm {
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: clamp(10px,0.63vw,12px);
    letter-spacing: 0.2em;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.heading-sm::before {
    content: '';
    width: 40px;
    height: 1px;
    background: #fff;
    margin: 0 17px 0 0;
}

/* Global button */
.global-btn {
    max-width: 183px;
    width: 100%;
    height: 60px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    font-size: clamp(10px,0.63vw,12px);
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--default-transition);
}

.global-btn:hover {
  background: var(--primary);
  color: #fff;
}

.global-btn-outline {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    width: fit-content;
    font-size: clamp(10px,0.63vw,12px);
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 10px 0;
    transition: var(--default-transition);
}

.global-btn-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.global-btn-outline.dark {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

.global-btn-outline.dark:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* Fallback for low-power / reduced motion or unsupported browsers */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-video-banner {
    background-image: url('/wp-content/uploads/2026/07/hado-hero-poster.jpg');
  }
}


.marquee-wrap {
  background: var(--secondary);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.marquee-list li {
  flex-shrink: 0;
  color: #fff;
  font-size: clamp(10px,0.63vw,12px);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase; /* displays as uppercase, markup stays sentence case */
  padding: 0 40px;
  white-space: nowrap;
  /* border-right: 1px solid rgba(255, 255, 255, 0.15); */
}

.marquee-list li:last-child {
  border-right: none;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover — nice touch, optional */
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

/* Respect users who've asked for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* Global Title */
h2.global-title {
  margin: 0;
}

.global-title-sm {
  position: relative;
  color: var(--primary);
  text-transform: uppercase;
  font-size: clamp(10px,0.63vw,12px);
  letter-spacing: 0.2em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-weight: 400;
}

.global-title-sm::before {
  content: '';
  background: var(--primary);
  width: 40px;
  height: 1px;
  margin: 0 16px 0 0;
  display: block;
}

.global-title-lg {
  font-weight: 300;
  font-size: clamp(35px,2.6vw,50px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--secondary);
  margin: 26px 0 35px;
}

.global-title-lg span {
  color: var(--primary);
}

.global-title-md {
  font-weight: 300;
  font-size: clamp(20px,1.3vw,25px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--secondary);
  margin: 26px 0 35px;
}

.global-title-mid {
  font-weight: 300;
  font-size: clamp(25px,1.82vw,35px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--secondary);
  margin: 26px 0 35px;
}

/* Global Container */
.global-container {
  max-width: 1310px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* Global Text */
.global-txt {
  font-size: clamp(15px,0.83vw,16px);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0;
  margin: 0;
}

.global-txt p {
  margin: 0 0 30px;
}


/* Who Are We */
.who-wrap {
  padding: 140px 0 160px;
  position: relative;
  background: #fff;
}

.who-col {
  width: 50%;
}

.who-col.left {
  padding: 0 15px 0 0;
}

.who-col.right {
  padding: 0 0 0 15px;
}

.who-col.right .who-col-inner {
  max-width: 579px;
  width: 100%;
  margin: 0 0 0 auto;
}

.who-txt {
  max-width: 622px;
  width: 100%;
}

.who-quote {
  max-width: 575px;
  width: 100%;
  min-height: 110px;
  border-left: 2px solid var(--primary);
  background: #fff;
  box-shadow: 3px 3px 26px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70px 0 0;
  transition: var(--default-transition);
  position: relative;
  padding: 10px;
}

.who-quote p {
  position: relative;
  z-index: 10;
  transition: var(--default-transition);
}

.who-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: var(--default-transition);
}

.who-quote:hover::before {
  width: 100%;
}

.who-quote:hover p {
  color: #fff;
}


.who-quote p {
  max-width: 483px;
  width: 100%;
  font-size: clamp(16px,0.99vw,19px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--secondary);
}

.who-cards-item {
  width: 50%;
  height: 100%;
}

.who-cards-item img {
    display: block;
    width: 50px;
    height: 50px;
}

.who-cards-item-inner {
  height: 177px;
  border: 1px solid #D9D9D9;
  padding: 20px;
  transition: var(--default-transition);
}

.who-cards-item-inner:hover {
  background: #F4F2EE;
}

.who-cards-item:nth-child(even) .who-cards-item-inner {
  border-left: 0;
}

.who-cards-item:nth-child(n + 2) ~ div .who-cards-item-inner {
  border-top: 0;
}

.who-cards-item span {
  display: block;
  font-size: 9px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.who-cards-item h3 {
  margin: 17px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.who-cards-item p {
  font-size: clamp(10px,0.63vw,12px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--accent);
  max-width: 248px;
  width: 100%;
}


/* What We DO */
.what-wrap {
  padding: 100px 0;
}

.what-top {
  margin: 0 0 130px;
}

.what-cards-item {
  width: calc(100% / 3);
  min-height: 283px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: flex-start;
  padding: 33px 15px 15px;
  justify-content: center;
  position: relative;
  /* transition: var(--default-transition); */
  
}

.what-cards-item a {
  color: var(--secondary);
}

.what-cards-item:hover {
  /* background: var(--secondary); */
}

.what-cards-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  transition: var(--default-transition);
  z-index: 1;
  opacity: 0;
}

.what-cards-item:hover::before {
  opacity: 1;
}

.what-cards-item .bg-c {
  /* transition: var(--default-transition); */
  opacity: 0;
  z-index: 10;
}

.what-cards-item:hover .bg-c {
  opacity: 0.5;
}

.what-cards-item span {
  display: block;
  font-size: 9px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: var(--secondary);
  /* transition: var(--default-transition); */
}

.what-cards-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin: 20px 0;
  /* transition: var(--default-transition); */
}

.what-cards-item h3 {
  margin: 0 0 20px;
  font-size: clamp(18px,1.04vw,20px);
  font-weight: 400;
  letter-spacing: -0.02%;
  line-height: 1.1;
  /* transition: var(--default-transition); */
}

.what-cards-item p {
  max-width: 345px;
  width: 100%;
  letter-spacing: 0.02%;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--secondary);
  margin: 0;
  /* transition: var(--default-transition); */
}

.what-cards-item:hover h3 {
  color: #fff;
}

.what-cards-item:hover img,
.what-cards-item:hover p,
.what-cards-item:hover span {
  opacity: 0;
  visibility: hidden;
}

.what-cards-item-inner {
  max-width: 345px;
  width: 100%;
  margin: 0;
}

.what-cards-item:nth-child(1),
.what-cards-item:nth-child(2) {
  border-right: 0;
  border-bottom: 0;
}

.what-cards-item:nth-child(3) {
  border-bottom: 0;
}

.what-cards-item:nth-child(4),
.what-cards-item:nth-child(5) {
  border-right: 0;
}

.what-title,
.what-desc {
  /* width: 50%; */
}

.what-desc {
  margin: 0 0 2px;
  padding: 0 0 0 15px;
}

.what-desc .global-txt {
  max-width: 619px;
  width: 100%;
  margin: 0 0 0 auto;
}

.what-wrap .global-title-lg {
  margin-bottom: 0;
}

/* How It Works */
.how-wrap {
  /* min-height: 1410px; */
  background: var(--secondary);
  color: #fff;
  padding: 170px 0 150px;
}

.how-wrap .bg-canvas {
  opacity: 0.05;
  /* background-attachment: fixed; */
}

.how-wrap .global-title-lg {
  color: #fff;
  margin-bottom: 80px;
}

.how-col {
  width: 50%;
}

.how-col.left {
  padding: 0 15px 0 0;
}

.how-col.right {
  padding: 0 0 0 15px;
}

.how-list {
  margin: 237px 0 0; 
  padding: 0;
  list-style: none;
}

.how-list li {
  border-top: 1px solid #373737;
  padding: 32px 0;
}

.how-list li:last-child {
  border-bottom: 1px solid #373737;
}

.how-col.right .how-col-inner {
  max-width: 583px;
  width: 100%;
  margin: 0 0 0 auto;
}

.how-col.left .how-col-inner {
  max-width: 584px;
  width: 100%;
}

.how-list-num {
  width: 45px;
  display: block;
  font-size: clamp(15px,0.83vw,16px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.how-list-content {
  flex: 1;
}

.how-list-content h3 {
  margin: 0;
  font-size: clamp(15px,0.83vw,16px);
  font-weight: 400;
  line-height: 1.1;
}

.how-list-content  p {
  max-width: 495px;
  width: 100%;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--accent);
  margin: 17px 0 0;
}

.how-quote {
  padding: 0 0 0 90px;
  position: relative;
  margin: 130px 0 0;
}

.how-quote::before {
  content: '"';
  font-family: var(--font-family-default);
  font-size: 100px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.1;
  position: absolute;
  left: 0;
  top: -15px;
}

.how-quote p {
  font-size: clamp(22px,1.46vw,28px);
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 30px;
}

.how-quote span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  font-size: clamp(10px,0.63vw,12px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--primary);
}

.how-quote span::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--primary);
  margin: 0 15px 0 0;
}

/* Selected Works */
.work-wrap {
  padding: 130px 0;
  position: relative;
  background: #fff;
}

.work-title .global-title-lg {
  margin-bottom: 0;
}

.work-top {
  margin: 0 0 80px;
}

.work-btn {
  margin-bottom: 13px;
}

.work-item a {
  border: 1px solid var(--accent);
  background: #F7F7F7;
  display: flex;
  transition: var(--default-transition);
}

.work-item a:hover {
  background: #E8E2D5;
}

.work-item.lg {
  width: 100%;
}

.work-item.sm {
  width: 50%;
}

.work-item.lg a {
  padding: 40px 15px;
}

.work-item.sm a {
  padding: 49px 15px;
}

.work-item.sm a {
  border-top: 0;
}

.work-item.sm:nth-child(even) a {
  border-right: 0;
}

.work-item.lg .work-item-inner {
  width: 100%;
}

.work-item.lg .work-item-img,
.work-item.lg .work-item-details {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.work-item.lg .work-item-img .img-wrapper {
  max-width: 567px;
  width: 100%;
  overflow: hidden;
}

.work-item.lg .work-item-img .img-wrapper img {
  transition: var(--default-transition);
}

.work-item.lg a:hover .work-item-img .img-wrapper img {
  transform: scale(1.1);
}

.work-item.lg .work-item-details-inner {
  max-width: 567px;
  width: 100%;
}

.work-item.lg .work-item-details-inner > span,
.work-item.sm .details-top span {
  font-size: 9px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.work-item.sm .details-top span:last-of-type {
  color: var(--secondary);
}

.work-item.lg .work-item-details h3,
.work-item.sm .details h3 {
  font-size: clamp(18px,1.04vw,20px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin: 10px 0 15px;
}

.work-item.sm .details h3 {
  margin: 15px 0;
}

.work-item.lg .work-item-details em,
.work-item.sm .details .loc {
  font-size: 9px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--secondary);
  font-style: normal !important;
}

.work-item.lg .work-item-details p {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 25px 0 20px;
  max-width: 464px;
  width: 100%;
}

.work-item.sm .work-item-inner {
  max-width: 548px;
  width: 100%;
  margin: auto;
}

.hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--default-transition);
  background: var(--secondary);
  opacity: 0;
  visibility: hidden;
}

.hover-txt {
  color: #fff;
  font-size: clamp(10px,0.63vw,12px);
  text-transform: uppercase;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 150px;
  letter-spacing: 0.1em;
  z-index: 20;
}

.work-item.sm a:hover .hover {
  opacity: 1;
  visibility: visible;
}

/* Articles */
.articles-wrap {
  padding: 25px 0 140px;
  position: relative;
  background: #fff;
}

.articles-title .global-title-lg {
  margin-bottom: 0;
}

.articles-top {
  margin: 0 0 63px;
}

.articles-btn {
  margin-bottom: 13px;
}

.articles-item.lg {
  width: 100%;
  margin: 0 0 100px;
}

.articles-item.lg .articles-item-col {
  width: 50%;
}

.articles-item-content-top span {
  font-size: 9px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.articles-item-content-top span:last-child {
  text-transform: none;
  color: var(--secondary);
  letter-spacing: 0;
}

.articles-item-col.content {
  padding: 0 0 0 15px;
}

.articles-item-col.content .articles-item-content-inner {
  max-width: 599px;
  width: 100%;
  margin: 0 0 0 auto;
}

.articles-item-col.content h3 {
  font-size: clamp(18px,1.04vw,20px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin: 20px 0 25px;
}

.articles-item-col.content p {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 25px 0 20px;
}

.articles-item.sm {
  width: calc(100% / 3);
  transition: var(--default-transition);
}

.articles-item.sm:nth-child(2) {
  background: var(--secondary);
}

.articles-item.sm:nth-child(3) {
  background: var(--primary);
}

.articles-item.sm:nth-child(4) {
  background: var(--accent);
}

.articles-item.sm .content {
  width: 100%;
  padding: 19px 20px 15px;
}

.articles-item.sm a * {
  color: #fff;
  transition: var(--default-transition);
}

.articles-item.sm h3 {
  font-size: 14px;
  max-width: 303px;
  width: 100%;
  margin-bottom: 0;
}

.articles-item-col.img .img-wrapper {
  overflow: hidden;
}

.articles-item-col.img .img-wrapper img {
  transition: var(--default-transition);
}

.articles-item.lg a:hover .articles-item-col.img .img-wrapper img {
  transform: scale(1.1);
}


.articles-item.lg a:hover .global-btn-outline.dark {
  color: var(--primary);
  border-color: var(--primary);
}

.articles-item.sm:hover {
  background: #E8E2D5 !important;
}

.articles-item.sm a:hover * {
  color: var(--secondary);
}

/* Contact */
.contact-wrap {
  background: #f7f7f7;
  padding: 105px 0 115px;
}

.contact-txt {
  max-width: 602px;
  width: 100%;
  margin: 45px 0 60px;
}

.contact-col {
  width: 50%;
}

.contact-col.content {
  padding: 0 15px 0 0;
}

.contact-col.form {
  padding: 0 0 0 15px;
}

.contact-label {
  width: 120px;
  font-size: clamp(10px,0.63vw,12px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  padding: 8px 0 0;
}

.contact-value {
  flex: 1;
}

.contact-value a {
  font-size: clamp(15px,0.83vw,16px);
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.8;
  position: relative;
}

.contact-value a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 1px;
  width: 0;
  background: var(--primary);
  transition: var(--default-transition);
}

.contact-value a:hover::after {
  width: 100%;
}

.contact-item {
  margin: 0 0 10px;
}

.contact-form-box {
    max-width: 584px;
    width: 100%;
    margin: 0 0 0 auto;
}

.contact-form-box p {
  margin: 0;
}

.contact-form-box br {
  display: none;
}

.contact-form-box .form-row p {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-form-box .form-row label {
  width: calc(50% - 8px);
}

.contact-form-box label {
  display: block;
  font-family: var(--font-family-default);
  font-size: clamp(10px,0.63vw,12px);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.1;
  color: var(--primary);
  text-transform: uppercase;
  margin: 31px 0 0;
}

.contact-form-box .wpcf7-form-control-wrap {
  display: block;
  margin: 11px 0 0;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 0;
  font-size: 14px;
  color: var(--accent);
  padding: 0 20px;
  font-family: var(--font-family-default);
  outline: none;
  display: block;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border-color: var(--primary);
} 

.contact-form-box textarea {
  height: 120px;
  resize: none;
  padding: 20px;
    /* Hide scrollbar - Firefox */
  scrollbar-width: none;

  /* Hide scrollbar - IE/Edge legacy */
  -ms-overflow-style: none;
}

/* Hide scrollbar - Chrome, Safari, Edge (Chromium) */
.contact-form-box textarea::-webkit-scrollbar {
  display: none;
}

.contact-form-box input[type="submit"] {
  height: 60px;
  width: 184px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid var(--secondary);
  text-transform: uppercase;
  font-size: clamp(10px,0.63vw,12px);
  letter-spacing: 0.1em;
  cursor: pointer;
  margin: 30px 0 0;
  transition: var(--default-transition);
}

.contact-form-box input[type="submit"]:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.contact-form-box .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    right: 10px;
    left: auto;
    top: 10px;
    margin: auto;
    width: auto;
    font-size: 11px;
    padding: 10px;
}

.contact-form-box .wpcf7 form .wpcf7-response-output {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -55px;
    color: var(--secondary);
    text-align: center;
    font-size: 11px;
    padding: 10px;
    margin: 0;
}

.contact-form-box .wpcf7-spinner {
  position: absolute;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--secondary);
  min-height: 500px;
  padding: 83px 0 0;
}

.footer a {
  transition: var(--default-transition);
}

.footer a:hover {
  color: #fff !important;
}

.credits {
  border-top: 1px solid var(--accent);
  font-size: clamp(10px,0.63vw,12px);
  line-height: 1.1;
  color: var(--accent);
  padding: 48px 0;
  margin: 89px 0 0;
}

.footer h2 {
  color: #fff;
  margin: 28px 0 20px;
  font-size: clamp(24px,1.56vw,30px);
  font-weight: 400;
  line-height: 1.2;
}

.footer .logo p {
  font-size: clamp(10px,0.63vw,12px);
  font-weight: 400;
  line-height: 1.5;
  margin: 20px 0 0;
  color: var(--accent);
}

.footer-col.logo {
  width: 40%;
  padding: 0 15px 0 0;
}

.footer-col.logo img {
    max-width: 231px;
    width: 100%;
    display: block;
    height: auto;
}

.footer-col.fnav,
.footer-col.smi {
  width: 30% ;
  padding: 0 15px 0 0
}

.footer-col h3 {
  margin: 0 0 35px;
  font-size: clamp(10px,0.63vw,12px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-col.fnav ul {
  margin: 0;
  padding: 0 0 0 25px;
  list-style: square;
  color: var(--accent);
}

.footer-col.fnav ul li {
  padding: 4px 0;
}

.footer-col.fnav ul li a {
  position: relative;
  font-size: clamp(15px,0.83vw,16px);
  line-height: 1;
  font-weight: 400;
  color: var(--accent);
}

.footer-col.smi a {
  color: var(--accent);
  font-size: 32px;
}

.smi-holder {
  gap: 38px;
}

/* Inner pages */
.ip-container:not(.home) .header {
  border-bottom: 1px solid rgba(30, 30, 30, 0.2);
  background: #fff;
}

.ip-container:not(.home) .header-logo img {
    filter: invert(1);
}

#inner-page-wrapper {
    padding: 126px 0 30px;
}

/* 404 */
.error-page-content-wrapper {
    padding: 100px 0;
}

.error-page-content-wrapper .img-wrapper {
  margin: 0 0 50px;
}

@media only screen and (max-width: 1024px) {
  .header {
    padding: 5px;
    background: rgb(30 30 30 / 65%);
  }

  .ip-container:not(.home) .header {
    background: #fff;
  }

  .header-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .header-logo {
      max-width: 90px;
      width: 100%;
  }

  .header-btn {
    max-width: 120px;
    margin: 0 10px 0 auto;
  }

  .menu-btn-inner {
    height: 60px;
    width: 60px;
  }

  .hero-content p {
    max-width: 100%;
  }

  .who-col {
    width: 100%;
  }

  .who-col.left {
    padding: 0 0 50px;
  }

  .who-wrap {
    padding: 50px 0;
  }

  .who-txt {
    max-width: 100%;
  }

  .who-col.right {
    padding: 0;
  }

  .who-col.right .who-col-inner {
    max-width: 100%;
  }

  .who-cards-item p {
    font-size: 15px;
    max-width: 100%;
  }

  .who-cards-item {
    width: 100%;
  }

  .who-cards-item-inner {
    border: 1px solid #D9D9D9 !important;
    height: auto;
  }

  .what-desc {
    width: 100%;
    margin: 30px 0 0;
    padding: 0;
  }

  .what-desc .global-txt {
    max-width: 100%;
  }

  .what-top {
    margin: 0 0 50px;
  }

  .what-cards-item {
    width: 100%;
    min-height: auto;
    border: 1px solid var(--accent) !important;
    padding: 15px
  }

  .what-cards-item-inner {
    max-width: 100%;
  }

  .what-cards-item p {
    max-width: 100%;
  }

  .what-cards-item img {
    margin: 10px 0;
  }

  .what-cards-item h3 {
    margin: 0 0 10px;
  }

  .what-wrap {
    padding: 50px 0;
  }

  .how-wrap {
    padding: 50px 0;
  }

  .how-col {
    width: 100%;
  }

  .how-col.left,
  .how-col.right {
    padding: 0;
  }

  .how-wrap .global-title-lg {
    margin-bottom: 35px;
  }

  .how-col.left .how-col-inner {
    max-width: 100%;
  }

  .how-col.right .how-col-inner {
    max-width: 100%;
  }

  .how-list {
    margin: 50px 0 0;
  }

  .how-list-content p {
    max-width: 100%;
  }

  .how-list li {
    padding: 19px 0 16px;
  }

  .how-quote {
    margin: 50px 0 0;
  }

  .work-title {
    width: 100%;
    margin: 0 0 20px;
  }

  .work-item.lg .work-item-img, .work-item.lg .work-item-details {
    width: 100%;
  }

  .work-item.lg a {
    padding: 15px 0;
  }

  .work-item.sm {
    width: 100%;
  }

  .details-top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .work-item.sm a {
    padding: 25px 15px;
    border: 1px solid var(--accent) !important;
  }

  .articles-title {
    width: 100%;
    margin: 0 0 20px;
  }

  .articles-item.lg .articles-item-col {
    width: 100%;
  }

  .articles-item-col.img .img-wrapper {
    overflow: hidden;
    max-width: 567px;
    width: 100%;
    margin: 0 auto 50px;
  }

  .articles-item-col.content .articles-item-content-inner {
    max-width: 100%;
  }

  .articles-item-col.content {
    padding: 0;
  }

  .articles-item.sm {
    width: 100%;
  }

  .articles-item.sm .content {
    padding: 15px;
  }

  .contact-col {
    width: 100%;
  }

  .contact-col.form {
    padding: 0;
  }

  .contact-txt {
    max-width: 100%;
    margin: 20px 0 30px;
  }

  .contact-form-box {
    margin: 0;
  }

  .contact-wrap {
    padding: 50px 0 80px;
  }

  .footer-col.logo,
  .footer-col.fnav {
    width: 50%;
  }

  .footer-col.smi {
    width: 100%;
    margin: 50px 0 0;
  }

  .credits {
    padding: 20px 0;
    margin: 30px 0 0;
  }
  
}



/* =========================================
   BLOGS PAGE — page-blogs.php
   Design system: Sora / #1E1E1E / #A38056 / #9A9995 / #F4F2EE
   ========================================= */

.blogs-page {
    /* background: #F4F2EE; */
    font-family: 'Sora', sans-serif;
    color: #1E1E1E;
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px 8rem;
}

.blogs-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A38056;
    margin-bottom: 0.75rem;
}

/* ---------- Header ---------- */
.blogs-header {
    padding: 8rem 0 4rem;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.blogs-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    max-width: 20ch;
}

/* ---------- Featured post ---------- */
.blogs-featured {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.blogs-featured-link {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.blogs-featured-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #9A9995;
}

.blogs-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blogs-featured-link:hover .blogs-featured-image img {
    transform: scale(1.04);
}

.blogs-featured-headline {
    font-size: clamp(1.5rem, 2.4vw, 2.25rem);
    font-weight: 400;
    line-height: 1.25;
    margin: 0.75rem 0 1rem;
}

/* ---------- Shared card text ---------- */
.blogs-card-category {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9A9995;
    margin-bottom: 0.5rem;
}

.blogs-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #565553;
    max-width: 48ch;
}

.blogs-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1E1E1E;
    border-bottom: 1px solid #A38056;
    padding-bottom: 0.25rem;
    width: fit-content;
}

.blogs-arrow {
    transition: transform 0.25s ease;
    display: inline-block;
}

.blogs-featured-link:hover .blogs-arrow,
.blogs-newsletter-form button:hover .blogs-arrow {
    transform: translateX(4px);
}

/* ---------- Grid ---------- */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
    padding: 4rem 0;
}

.blogs-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blogs-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #9A9995;
    margin-bottom: 1rem;
}

.blogs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blogs-card-link:hover .blogs-card-image img {
    transform: scale(1.04);
}

.blogs-card-title {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 0.5rem;
}

.blogs-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #9A9995;
    padding: 4rem 0;
}

/* ---------- Pagination ---------- */
.blogs-pagination {
    display: flex;
    justify-content: center;
    padding: 2rem 0 5rem;
}

.blogs-pagination ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blogs-pagination .page-numbers {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #9A9995;
    text-decoration: none;
    padding: 0.35rem 0.1rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.blogs-pagination .page-numbers.current {
    color: #1E1E1E;
    border-bottom-color: #A38056;
}

.blogs-pagination a.page-numbers:hover {
    color: #1E1E1E;
    border-bottom-color: #A38056;
}

.blogs-pagination .page-numbers.dots {
    border-bottom: none;
    color: #9A9995;
}

/* ---------- Newsletter strip ---------- */
.blogs-newsletter {
    background: #1E1E1E;
    color: #FFFFFF;
    margin: 0 -6vw;
    padding: 4.5rem 6vw;
}

.blogs-newsletter .blogs-eyebrow {
    color: #A38056;
}

.blogs-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.blogs-newsletter-text h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0;
}

.blogs-newsletter-form {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.75rem;
    min-width: 340px;
}

.blogs-newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.blogs-newsletter-form input::placeholder {
    color: #9A9995;
}

.blogs-newsletter-form input:focus {
    outline: none;
}

.blogs-newsletter-form button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #FFFFFF;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

.page-id-126 #inner-page-wrapper > .container {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.page-id-126 #inner-page-wrapper {
  padding-bottom: 0;
  /* background: #F4F2EE; */
}

.page-id-126 .blogs-category-pill {
    display: block;
    margin: 0 0 20px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 300;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .blogs-featured-link {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .blogs-newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .blogs-newsletter-form {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .blogs-header {
        padding: 5rem 0 3rem;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blogs-featured-image img,
    .blogs-card-image img,
    .blogs-arrow {
        transition: none;
    }
}