

* { box-sizing: border-box; }

:root {
  --rv-ease: cubic-bezier(.22, .61, .36, 1);
  --rv-duration: .85s;
}

html { scroll-behavior: smooth; overflow-x:hidden; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #15130F;
  -webkit-font-smoothing: antialiased;
  max-width:100%;
  overflow-x:hidden;
}

.section-padding{
  padding: 70px 0;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  margin: 0;
  color: #15130F;
  letter-spacing: -0.01em;
}
h1 em, h2 em, h3 em, .philosophy__quote em { font-style: italic; font-weight: 400; }

p { margin: 0; line-height: 1.7; color: #4A4436; }

.container { max-width: 1350px; }

.bg-main{
  background-color: #fffcf4;
}

/* ---------- Eyebrow (with triangle mark) ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A7361;
  margin: 0 0 1.1rem;
}
.eyebrow--light { color: #E8C79E; }
.eyebrow--center { justify-content: center; }
.eyebrow__mark {
  display: inline-block;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid #FD7712;
}

/* ---------- Buttons ---------- */
.btn-niora-primary {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  background-color: #FD7712;
  color: #15130F;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid #FD7712;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn-niora-primary:hover { background-color: #C6590E; border-color: #C6590E; color: #FFFDF9; transform: translateY(-2px); }

.btn-niora-ghost {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  background-color: transparent;
  color: #FFFDF9;
  border: 1px solid rgba(255, 253, 249, 0.4);
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.btn-niora-ghost:hover { border-color: #FD7712; background-color: rgba(253, 119, 18, 0.1); }

/* ---------- Section head helper ---------- */
.section-head { max-width: 640px; margin: 0 0 4rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 1rem; }
.section-head__sub { color: #7A7361; font-size: 1.03rem; }
.section-head--light h2 { color: #FFFDF9; }
.section-head--light .section-head__sub--light { color: #B9B29E; }

/* ==========================================================================
   NAV
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.is-scrolled {
  background-color: rgba(21, 19, 15, 0.94);
  backdrop-filter: blur(8px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.site-nav__row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.site-nav__mark { width: 80px; height: auto; }
.site-nav__word {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #FFFDF9;
}
.site-nav__word em { font-style: italic; color: #FD7712; font-weight: 400; margin-left: 0.15em; }
.site-nav__links { display: flex; gap: 2.1rem; margin: 0 auto; }
.site-nav__links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  padding-bottom: 4px;
}
.site-nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background-color: #FD7712;
  transition: width 0.25s ease;
}
.site-nav__links a:hover::after { width: 100%; }
.site-nav__cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #15130F;
  background-color: #FD7712;
  padding: 0.65rem 1.3rem;
  border-radius: 2px;
  transition: background-color 0.25s ease;
}
.site-nav__cta:hover { background-color: #FBE4CD; }
.site-nav__toggle { display: none; background: none; border: none; padding: 0; width: 26px; cursor: pointer; }
.site-nav__toggle span { display: block; height: 2px; background-color: #FFFDF9; margin: 5px 0; }

@media (max-width: 991px) {
  .site-nav__links, .site-nav__cta { display: none; }
  .site-nav__toggle { display: block; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(21 19 15 / 73%) 0%, rgba(21, 19, 15, 0.55) 45%, rgba(21, 19, 15, 0.94) 100%);
}

.hero__watermark {
  position: absolute;
  top: 6rem; right: -4vw;
  width: 34vw; max-width: 520px;
  opacity: 0.1;
  z-index: 1;
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) { .hero__watermark { width: 60vw; top: 4rem; right: -12vw; } }

.hero__rule {
  position: absolute;
  top: 7.5rem; left: 0; right: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.5);
}
.hero__rule span { position: relative; }
.hero__rule span:not(:last-child)::after { content: '/'; margin-left: 2.4rem; color: rgba(253,119,18,0.7); }
@media (max-width: 767px) { .hero__rule { display: none; } }

.hero__content { position: relative; z-index: 1; padding-bottom: 6.5rem; }
.hero__headline {
  font-size: clamp(2rem, 6.4vw, 5.2rem);
  color: #FFFDF9;
  line-height: 1.04;
  max-width: 820px;
  margin-bottom: 1.6rem;
}
.hero__headline em { color: #FD7712; }
.hero__sub { color: #D9D3C2; font-size: 1rem; max-width: 480px; margin-bottom: 2.4rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   PHILOSOPHY
   ========================================================================== */

.about-img img {
    height: 385px;
    width: 100%;
    object-fit: cover;
}

.philosophy { position: relative;  overflow: hidden; }
.philosophy__watermark {
  position: absolute;
  bottom: -6rem; left: -6rem;
  width: 340px;
  opacity: 0.05;
  transform: rotate(-12deg);
}
.philosophy__mark {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  color: #FD7712;
  line-height: 1;
  margin-bottom: -1.5rem;
}
.philosophy__quote p {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.5;
  color: #221D16;
  border-left: 2px solid #FD7712;
  padding-left: 2rem;
}


/* ==========================================================================
   BRANDS
   ========================================================================== */
.brands {  background-color: #fff; }

.brand-card { height: 100%; border-radius: 3px; overflow: hidden; }

.brand-card--active, .brand-card--reserved  {
  background-color: #FFFDF9;
  box-shadow: 0 20px 50px rgba(21,19,15,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.brand-card--active:hover, .brand-card--reserved:hover  { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(21,19,15,0.16); }

.brand-card__badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background-color: #FD7712;
  color: #15130F;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
}
.brand-card__body { padding: 2rem; }
.brand-card__body h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.brand-card__body p { font-size: 0.95rem; color: #7A7361; }

.brand-card--reserved {
  height: 100%;
  min-height: 280px;
  background-color: #fff;
  transition: background-color 0.3s ease;
}
.brand-card__tri { width: 42px; height: auto; fill: none; stroke: #7A7361; stroke-width: 1.4; stroke-dasharray: 3 4; }
.brand-card__slot-label {
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8C8570;
  line-height: 1.6;
}
.brand-card__media {
    position: relative;
    height: 420px;
    width: 100%;
    overflow: hidden;
}

.brand-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.brand-card:hover .brand-card__media img {
    transform: scale(1.08);
}

/* ==========================================================================
   WHAT WE DO
   ========================================================================== */
.capability-row{
    margin-bottom:120px;
}

.capability-row .btn-niora-primary{
    margin-top:15px;
}

.capability-image{
    position:relative;
    padding:30px;
}

.capability-image img{

    width:100%;
    height:500px;
    object-fit:cover;

    border-radius:20px;
    position:relative;
    z-index:2;

    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

/* Orange background block */

.capability-image .shape{

    position:absolute;

    width:50%;
    height:50%;

    background:#FD7712;

    border-radius:24px;

    top:-20px;
    left:-20px;

    opacity:.12;

    z-index:1;
}

/* Alternate */

.flex-lg-row-reverse .shape{

    left:auto;
    right:-20px;
}

.capability-content{

    padding:40px 70px;
}

.capability-number{

    display:inline-block;

    color:#FD7712;

    letter-spacing:3px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

    text-transform:uppercase;
}

.capability-content h3{

    font-size:40px;

    margin-bottom:20px;
}

.capability-content p{

    color:#666;

    line-height:1.9;
}


.capability-image::after{
content:"";
position:absolute;
width:80px;
height:80px;
border:2px solid #FD7712;
bottom:-20px;
right:-20px;
border-radius:18px;
z-index:1;
}

@media(max-width:991px){

.capability-row{

margin-bottom:20px;
}

.capability-content{

padding:40px 15px;
}

.capability-image img{

height:350px;
}

}

/* ==========================================================================
   ROADMAP
   ========================================================================== */
.roadmap { padding: 8rem 0; background-color: #F8F3E7; overflow: hidden; }

.roadmap__track {
  display: flex;
  gap: 3.2rem;
  overflow-x: auto;
  padding: 2.6rem 0.5rem 1rem;
  position: relative;
}
.roadmap__line {
  position: absolute;
  top: 3.9rem; left: 0; right: 0;
  height: 1px;
  background-image: linear-gradient(90deg, #FD7712 60%, transparent 0%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
}

.roadmap__stop { position: relative; flex: 0 0 280px; padding-top: 1.5rem; }
.roadmap__marker {
  position: relative;
  z-index: 1;
  width: 36px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
  background-color: #F8F3E7;
}
.roadmap__marker svg { width: 20px; height: 18px; fill: #FD7712; }
.roadmap__tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C6590E;
  margin-bottom: 0.7rem;
}
.roadmap__stop h3 { font-size: 1.25rem; margin-bottom: 0.7rem; }
.roadmap__stop p { font-size: 0.9rem; color: #7A7361; }

/* ==========================================================================
   PARTNER WITH NIORA
   ========================================================================== */
.partner__heading { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 1.4rem; }
.partner__body { font-size: 1.06rem; margin-bottom: 2.4rem; }

.partner__stats { display: flex; gap: 2.6rem; margin-bottom: 2.6rem; flex-wrap: wrap; }
.partner__stat { display: flex; flex-direction: column; }
.partner__stat-num { font-family: 'Fraunces', serif; font-size: 2.4rem; color: #C6590E; line-height: 1; }
.partner__stat-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.66rem; letter-spacing: 0.04em; color: #7A7361; margin-top: 0.6rem; text-transform: uppercase; max-width: 120px; }

.partner__media { position: relative; }
.partner__media img {
  width: 100%; aspect-ratio: 4/3.6; object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
}
.partner__seal {
  position: absolute;
  bottom: -1.6rem; left: -1.6rem;
  width: 128px; height: 128px;
  background-color: #15130F;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 14px 34px rgba(21,19,15,0.28);
}
.partner__seal img { width: 30px; filter: brightness(0) saturate(100%) invert(53%) sepia(78%) saturate(2400%) hue-rotate(1deg) brightness(103%) contrast(101%); }
.partner__seal span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFDF9;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 991px) { .partner__seal { left: 1rem; bottom: 1rem; } }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,253,249,0.12);
}
.testimonials__head h2 {  font-size: clamp(1.9rem, 3vw, 2.5rem); }

.testimonials__rating { display: flex; align-items: center; gap: 0.9rem; }
.testimonials__rating-num { font-family: 'Fraunces', serif; font-size: 2.6rem; color: #FD7712; line-height: 1; }
.testimonials__rating-num span { font-size: 1.1rem; color: #6B6459; }
.testimonials__rating-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem; letter-spacing: 0.03em; text-transform: uppercase; color: #A39C87; line-height: 1.6; }

.testimonial-card {
  height: 100%;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 14px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(253,119,18,0.4); }

.testimonial-card__top { margin-bottom: 1.4rem; }
.testimonial-stars { display: flex; gap: 0.25rem; }
.testimonial-stars svg { width: 15px; height: 15px; fill: #FD7712; }

.testimonial-card__quote {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 0.4rem;
  flex-grow: 1;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,253,249,0.08);
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: rgba(253,119,18,0.12);
  color: #FD7712;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.82rem;
  color: #A39C87;
}
.testimonial-card__meta strong { font-size: 0.9rem; font-weight: 600; }

/* ==========================================================================
   COMPANY INSIGHTS
   ========================================================================== */
.insights__head { margin-bottom: 3rem; }
.insights__head h2 { font-size: 1.7rem; }

.insight-card {
  display: block;
  position: relative;
  padding: 1.8rem 1.6rem 1.6rem;
  border-top: 2px solid #DED2B2;
  height: 100%;
  transition: border-color 0.25s ease;
}
.insight-card:hover { border-color: #FD7712; }
.insight-card:hover .insight-card__arrow { opacity: 1; transform: translateX(4px); }
.insight-card__date {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
    color: #A39C87;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    margin-top: 0.8rem;
}
.insight-card h3 { font-size: 1.1rem; font-weight: 500; line-height: 1.4; padding-right: 1.5rem; }
.insight-card__arrow {
  position: absolute; bottom: 1.6rem; right: 1.6rem;
  color: #FD7712; opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { position: relative; overflow: hidden; padding-bottom:20px; }
.site-footer__watermark {
  position: absolute;
  bottom: -4rem; right: -3rem;
  width: 260px;
  opacity: 0.06;
  filter: brightness(0) invert(1);
}
.site-footer h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8C8570;
  margin-bottom: 1.3rem;
}
.site-footer__brand { display: flex; align-items: center; gap: 0.65rem; }
.site-footer__brand img { width: 105px; }
.site-footer__brand span { font-family: 'Fraunces', serif; font-size: 1.4rem; color: #FFFDF9; }
.site-footer__brand span em { font-style: italic; color: #FD7712; font-weight: 400; margin-left: 0.15em; }
.site-footer__tag { color: #A39C87; font-size: 0.9rem; margin: 1.1rem 0 1.7rem; max-width: 300px; }
.site-footer__social { display: flex; gap: 0.8rem; }
.site-footer__social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,253,249,0.22);
  color: #FFFDF9;
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.site-footer__social a:hover { border-color: #FD7712; color: #FD7712; }

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 0.85rem; }
.site-footer ul a { color: #99917c; font-size: 0.92rem; transition: color 0.2s ease; }
.site-footer ul a:hover { color: #FD7712; }
.site-footer__contact li { color: #99917c; font-size: 0.92rem; }

.site-footer__bottom {
    position: relative;
    margin-top: 2rem;
    padding-top: 1.9rem;
    border-top: 1px solid rgb(255 220 151);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.site-footer__bottom p { color: #6B6459; font-size: 0.8rem; }
.site-footer__legal { display: flex; gap: 1.5rem; }
.site-footer__legal a { color: #6B6459; font-size: 0.8rem; }
.site-footer__legal a:hover { color: #FD7712; }




/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */
.page-header {
    position: relative;
    padding: 11rem 0 6rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.page-header::before{
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgb(21 19 15 / 73%) 0%, rgba(21, 19, 15, 0.55) 45%, rgba(21, 19, 15, 0.94) 100%);
  height: 100%;
  width: 100%;
}

.page-header__crumb {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b6459;
  margin-bottom: 2rem;
}
.page-header__crumb a {
  color: #a39c87;
}
.page-header__crumb a:hover {
  color: #fd7712;
}
.page-header__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fffdf9;
  line-height: 1.08;
  margin-bottom: 1.3rem;
}
.page-header__title em {
  font-style: italic;
  color: #fd7712;
  font-weight: 400;
}
.page-header__sub {
  color: #b9b29e;
  font-size: 1.1rem;
  max-width: 520px;
}

/* ==========================================================================
   DEPARTMENTS (quick-route strip)
   ========================================================================== */
.departments {
  background-color: #efe4ce;
}
.departments__grid {
  border-top: 1px solid #ded2b2;
}

.departments__item {
  display: block;
  padding: 2.6rem 2rem;
  border-right: 1px solid #ded2b2;
  border-bottom: 1px solid #ded2b2;
  transition: background-color 0.25s ease;
}
.departments__item:hover {
  background-color: #f8f3e7;
}
.departments__item:hover .departments__link {
  color: #c6590e;
}
.departments__item:nth-child(4) {
  border-right: none;
}
@media (max-width: 991px) {
  .departments__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .departments__item:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .departments__item {
    flex: 0 0 100%;
    max-width: 100%;
    border-right: none;
  }
}

.departments__icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fd7712;
  stroke-width: 1.6;
  margin-bottom: 1.4rem;
}
.departments__item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.departments__item p {
  font-size: 0.88rem;
  color: #7a7361;
  margin-bottom: 1rem;
}
.departments__link {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: #15130f;
  border-bottom: 1px solid #c9bfa4;
  padding-bottom: 3px;
  width: fit-content;
  transition: color 0.2s ease;
}

/* ==========================================================================
   CONTACT — form + info
   ========================================================================== */

.contact__heading {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-bottom: 2.6rem;
  max-width: 480px;
}

.contact-form label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a7361;
  margin-bottom: 0.6rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #c9bfa4;
  padding: 0.7rem 0.1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  color: #15130f;
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fd7712;
  box-shadow: none;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 14'%3E%3Cpath d='M2 3l8 8 8-8' fill='none' stroke='%237A7361' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  background-size: 14px;
}

.contact-form__success {
  display: none;
  margin: 1.2rem 0 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  color: #4b5a3a;
}
.contact-form__success.is-visible {
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding: 2.4rem;
  background-color: #efe4ce;
  border-radius: 3px;
}
.contact-info__item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.contact-info__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  fill: none;
  stroke: #fd7712;
  stroke-width: 1.6;
}
.contact-info__item h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a7361;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-info__item a,
.contact-info__item p {
  font-size: 0.98rem;
  color: #15130f;
}
.contact-info__item a:hover {
  color: #c6590e;
}


/* ==========================================================================
   READING PROGRESS BAR
   ========================================================================== */
.reading-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background-color: rgba(255,253,249,0.08);
  z-index: 1100;
}
.reading-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background-color: #FD7712;
  transition: width 0.1s linear;
}

/* ==========================================================================
   ARTICLE HEADER + META
   ========================================================================== */
.article-header { padding-bottom: 8.5rem; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #A39C87;
}
.article-meta__dot { color: #FD7712; }

/* ==========================================================================
   ARTICLE FIGURE / HERO IMAGE
   ========================================================================== */
.article-figure { margin: 0 0 2.6rem; }
.article-figure img { width: 100%; border-radius: 6px; object-fit: cover; }
.article-figure figcaption {
  margin-top: 0.9rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #A39C87;
}
.article-figure--hero {
  margin-top: -6.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.article-figure--hero img { aspect-ratio: 16/8; box-shadow: 0 30px 70px rgba(21,19,15,0.25); }
@media (max-width: 767px) { .article-figure--hero { margin-top: -3.5rem; } .article-figure--hero img { aspect-ratio: 4/3; } }

/* ==========================================================================
   ARTICLE PROSE
   ========================================================================== */

.article-prose__lede {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.55;
  color: #221D16;
  margin-bottom: 2.2rem;
}
.article-prose p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3F3A2E;
  margin-bottom: 1.6rem;
}
.article-prose h2 {
  font-size: 1.6rem;
  margin: 3rem 0 1.2rem;
}
.article-prose__quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: #221D16;
  border-left: 2px solid #FD7712;
  padding-left: 1.8rem;
  margin: 2.6rem 0;
}

.article-tags { display: flex; gap: 0.7rem; flex-wrap: wrap; margin: 3rem 0 2.6rem; }
.article-tags span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7A7361;
  border: 1px solid #C9BFA4;
  padding: 0.45rem 0.85rem;
  border-radius: 20px;
}

.article-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.8rem 0;
  border-top: 1px solid #DED2B2;
  border-bottom: 1px solid #DED2B2;
  margin-bottom: 3rem;
}
.article-share__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7A7361;
}
.article-share__links { display: flex; gap: 0.7rem; }
.article-share__btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #15130F;
  background: none;
  border: 1px solid #C9BFA4;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.article-share__btn:hover { border-color: #FD7712; color: #C6590E; }

.article-author {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background-color: #EFE4CE;
  border-radius: 4px;
  padding: 1.8rem;
}
.article-author__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background-color: #FD7712;
  color: #15130F;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.article-author h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.article-author p { font-size: 0.9rem; color: #7A7361; margin: 0; }


/* ==========================================================================
   ABOUT HERO
   ========================================================================== */
.about-hero { position: relative; overflow: hidden; }
.about-hero__media {
    position: relative;
    height: 95vh;
    min-height: 560px;
}.about-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,19,15,0.55) 0%, rgba(21,19,15,0.5) 40%, rgba(21,19,15,0.96) 100%);
}
.about-hero__watermark {
  position: absolute;
  top: 6rem; right: -4vw;
  width: 30vw; max-width: 460px;
  opacity: 0.09;
  z-index: 1;
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) { .about-hero__watermark { width: 55vw; } }

.about-hero__content {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    z-index: 1;
}
.about-hero__crumb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #A39C87;
  margin-bottom: 1.6rem;
}
.about-hero__crumb a { color: #A39C87; }
.about-hero__crumb a:hover { color: #FD7712; }
.about-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.08;
  color: #FFFDF9;
  max-width: 860px;
  margin-bottom: 1.5rem;
}
.about-hero__title em { font-style: italic; color: #FD7712; font-weight: 400; }
.about-hero__sub { color: #D9D3C2; font-size: 1.12rem; max-width: 540px; }

.about-hero__stats { position: relative; z-index: 1; background-color: #15130F; }
.about-hero__stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2.6rem 0;
  border-top: 1px solid rgba(255,253,249,0.12);
}
.about-hero__stat { display: flex; flex-direction: column; gap: 0.5rem; }
.about-hero__stat-num { font-family: 'Fraunces', serif; font-size: 2rem; color: #FD7712; line-height: 1; }
.about-hero__stat-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.66rem; letter-spacing: 0.05em; text-transform: uppercase; color: #A39C87; }


/* ==========================================================================
   VALUES
   ========================================================================== */
.values__grid { border-top: 1px solid rgba(255,253,249,0.12); }
.values__item {
  padding: 2.8rem 2.2rem;
  border-right: 1px solid rgba(255,253,249,0.12);
  border-bottom: 1px solid rgba(255,253,249,0.12);
  transition: background-color 0.25s ease;
}
.values__item:hover { background-color: rgba(253,119,18,0.04); }
.values__item:nth-child(4) { border-right: none; }
@media (max-width: 991px) { .values__item:nth-child(2) { border-right: none; } }
@media (max-width: 767px) { .values__item { border-right: none; } }
.values__icon { width: 34px; height: 34px; fill: none; stroke: #FD7712; stroke-width: 1.6; color: #FD7712; margin-bottom: 1.6rem; }
.values__item h3 {font-size: 1.25rem; margin-bottom: 0.8rem; }
.values__item p { color: #A39C87; font-size: 0.93rem; }

/* ==========================================================================
   BY THE NUMBERS
   ========================================================================== */
.numbers { padding: 6rem 0; }
.numbers__item { display: flex; flex-direction: column; gap: 0.6rem; text-align: center; }
.numbers__num { font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 4vw, 3.4rem); color: #C6590E; line-height: 1; }
.numbers__num span { font-size: 0.5em; color: #A18A5E; }
.numbers__label { font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem; letter-spacing: 0.03em; text-transform: uppercase; color: #7A7361; }

/* ==========================================================================
   LEADERSHIP
   ========================================================================== */
.person-card {
  height: 100%;
  padding: 2rem 1.8rem;
  background-color: #FFFDF9;
  border: 1px solid #DED2B2;
  border-radius: 6px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.person-card:hover { border-color: #FD7712; transform: translateY(-4px); }
.person-card__avatar {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background-color: #FBE4CD;
  color: #C6590E;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}
.person-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.person-card__role {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #C6590E;
  margin-bottom: 0.9rem;
}
.person-card p { font-size: 0.88rem; color: #7A7361; }
.leadership__note {
  margin-top: 2.6rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: #A39C87;
}

/* ==========================================================================
   FACILITIES
   ========================================================================== */
.facilities__figure { margin: 0; position: relative; border-radius: 6px; overflow: hidden; }
.facilities__figure img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.facilities__figure--tall img { aspect-ratio: 4/5.05; height: 100%; }
.facilities__figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(0deg, rgba(21,19,15,0.75) 0%, transparent 100%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFDF9;
}

/* ==========================================================================
   ABOUT CTA
   ========================================================================== */
.about-cta { position: relative; padding: 7rem 0; background-color: #15130F; overflow: hidden; text-align: center; }
.about-cta__watermark {
  position: absolute; top: 50%; left: 50%;
  width: 420px; transform: translate(-50%, -50%);
  opacity: 0.05; filter: brightness(0) invert(1);
}
.about-cta__content { position: relative; }
.about-cta h2 { color: #FFFDF9; font-size: clamp(1.9rem, 3.4vw, 2.6rem); max-width: 620px; margin: 0 auto 2.2rem; }



/*==================================================
CTA
==================================================*/

.cta-section{
    background:#F8F5F0;
}

.cta-wrapper{

    position:relative;
    overflow:hidden;

    padding:80px;

    border-radius:28px;

    background:#fff;

    border:1px solid #ECE5DA;

    box-shadow:0 20px 60px rgba(0,0,0,.05);

}

.cta-label{

    display:inline-block;

    color:#FD7712;

    font-size:.85rem;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:18px;
}

.cta-wrapper h2{

    font-size:3rem;

    line-height:1.2;

    margin-bottom:25px;

    max-width:700px;
}

.cta-wrapper p{

    font-size:1.05rem;

    line-height:1.9;

    color:#666;

    max-width:650px;
}

.theme-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    background:#FD7712;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    border-radius:60px;

    transition:.35s;
}

.theme-btn:hover{

    background:#212121;

    color:#fff;

    transform:translateY(-3px);
}


/* Decorative Shapes */

.cta-shape{

    position:absolute;

    border-radius:50%;

    pointer-events:none;

}

.cta-shape-1{

    width:260px;
    height:260px;

    background:#FD7712;

    opacity:.07;

    right:-90px;
    top:-90px;

}

.cta-shape-2{

    width:140px;
    height:140px;

    border:2px solid #FD7712;

    opacity:.15;

    left:-40px;
    bottom:-40px;

}


/* Responsive */

@media(max-width:991px){

.cta-wrapper{

padding:50px 35px;
}

.cta-wrapper h2{

font-size:2.2rem;
}

}

@media(max-width:767px){

.cta-wrapper{

padding:40px 25px;
}

.cta-wrapper h2{

font-size:1.8rem;
}

.theme-btn{

width:100%;
}

}

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

.footer-cta{

    position:relative;

    z-index:5;

    margin-bottom:-90px;
}

.footer-cta-wrapper{

    background: linear-gradient(135deg, #7A3E12 0%, #A44E14 100%);

    color:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 30px 80px rgba(0,0,0,.12);
}

.footer-cta-item{

    padding:70px;

    height:100%;
}

.footer-cta-right{

    border-left:1px solid rgba(255,255,255,.08);
}

.footer-cta-label{

    display:inline-block;

    color:#FD7712;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

    font-weight:600;
}

.footer-cta-item h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #fff;
}

.footer-cta-item p{

    color:rgba(255,255,255,.75);

    font-size:18px;

    line-height:1.8;

    max-width:500px;

    margin-bottom:40px;
}

.footer-social{

    display:flex;

    gap:16px;
}

.footer-social a{

    width:54px;

    height:54px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;
}

.footer-social a:hover{

    background:#FD7712;

    border-color:#FD7712;

    transform:translateY(-5px);
}

.footer-cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    background:#FD7712;

    color:#fff;

    text-decoration:none;

    border-radius:60px;

    font-weight:600;

    transition:.3s;
}

.footer-cta-btn:hover{

    background:#fff;

    color:#222;
}

.visit-btn {
    color: var(--bs-black);
    color: #f38029;
    font-size: 13px;
    margin-top: 10px;
    display: inline-block;
}
.facilities__figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #f1f1f1;
}

.facilities__figure a {
    display: block;
    width: 100%;
    height: 100%;
}

.facilities__figure img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facilities__figure:hover img {
    transform: scale(1.05);
}

/* Large featured image */
.facilities__figure--featured {
    height: 650px;
}

/* Top two images */
.facilities__figure--small {
    height: 310px;
}

/* Bottom full-width image */
.facilities__figure--bottom {
    height: 310px;
}


/* Caption */
.facilities__figure figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 20px 18px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0)
    );
}


/* Mobile */
@media (max-width: 991px) {

    .facilities__figure--featured {
        height: 450px;
    }

    .facilities__figure--small,
    .facilities__figure--bottom {
        height: 260px;
    }
}


@media (max-width: 575px) {

    .facilities__figure--featured {
        height: 350px;
    }

    .facilities__figure--small,
    .facilities__figure--bottom {
        height: 220px;
    }

    .facilities__figure figcaption {
        font-size: 14px;
        padding: 30px 12px 12px;
    }
}


/* Base hidden state — applied only once JS adds the attribute */
[data-rv] {
  opacity: 0;
  transform: translate3d(var(--rv-x, 0px), var(--rv-y, 28px), 0) scale(var(--rv-scale, 1));
  transition:
    opacity var(--rv-dur, var(--rv-duration)) var(--rv-ease),
    transform var(--rv-dur, var(--rv-duration)) var(--rv-ease),
    clip-path var(--rv-dur, var(--rv-duration)) var(--rv-ease);
  transition-delay: var(--rv-delay, 0ms);
  will-change: opacity, transform;
}
 
/* Variants */
[data-rv="up"]    { --rv-y: 28px; }
[data-rv="fade"]  { --rv-y: 0px; }
[data-rv="left"]  { --rv-x: -36px; --rv-y: 0px; }
[data-rv="right"] { --rv-x: 36px;  --rv-y: 0px; }
[data-rv="zoom"]  { --rv-y: 0px;   --rv-scale: .94; }
[data-rv="wipe"]  { --rv-y: 0px;   clip-path: inset(0 0 100% 0); }
 
/* Revealed state */
[data-rv].rv-in {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
}
 
/* Settle: drop will-change once the animation is done */
[data-rv].rv-done { will-change: auto; }
 
/* --------------------------------------------------------------------------
   Section-specific tuning
   -------------------------------------------------------------------------- */
 
/* Capability photos: slow top-down wipe with a gentle push-in */
.capability-image img[data-rv] {
  --rv-scale: 1.07;
  --rv-dur: 1.15s;
}
 
/* Hero copy comes in a touch faster so the page feels responsive on load */
.hero__content > [data-rv] {
  --rv-dur: .7s;
  --rv-y: 22px;
}
 
/* Cards travel a little further — the movement reads as a group */
.brand-card[data-rv],
.testimonial-card[data-rv],
.insight-card[data-rv] {
  --rv-y: 38px;
}
 
/* --------------------------------------------------------------------------
   Accessibility
   JS bails out entirely under reduced motion; this is the belt-and-braces.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  [data-rv],
  [data-rv].rv-in {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}

@media(max-width:991px){

.footer-cta{

margin-bottom:0;
}

.footer-cta-item{

padding:50px 35px;
}

.footer-cta-right{

border-left:none;

border-top:1px solid rgba(255,255,255,.08);
}

.footer-cta-item h2{

font-size:2.3rem;
}

}

@media(max-width:767px){

.footer-cta-item{

padding:40px 25px;
}

.footer-cta-item h2{

font-size:2rem;
}

.hero__content {

    padding-bottom: 2rem;
}

.section-padding {
    padding: 30px 0;
}

}


@media (max-width: 991px) {
  .capability-image { padding: 20px; }

  /* pull the decorations inside the box */
  .capability-image::after {
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
  }
  .capability-image .shape { left: 0; top: 0; }
  .flex-lg-row-reverse .shape { left: 0; right: auto; }
}
