:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #f0f0f0;
    --font-family: "Open Sans", Sans-serif;
    --font-size: 16px;
    --line-height: 1.5;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}

p {
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:visited,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
    color: #000;
    font-family: var(--font-family);
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}

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

button {
    cursor: pointer;
}

.comments-area a,
.page-content a {
    text-decoration: none !important;
}

#wpforms-251 input,
#wpforms-251 button {
    max-width: 100%;
    width: 100%;
    font-family: var(--font-family);
}

#wpforms-251 label,
#wpforms-251 textarea {
    font-family: "Josefin Sans", Sans-serif;
}

[data-id="c05b809"],
.hfe-nav-menu__align-left {
    width: 100%;
}


/* ==========================================================================
   BUTTONS (shared across widgets)
   ========================================================================== */
.is-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    line-height: 1.2;
}

/* Button Sizes */
.is-btn--sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
}

.is-btn--lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* Button Presets */
.is-btn--primary {
    background-color: #C8A76A;
    color: #111111;
    border-color: #C8A76A;
}

.is-btn--primary:hover {
    background-color: #d4b88a;
    color: #111111;
    border-color: #d4b88a;
}

.is-btn--outline {
    background-color: transparent;
    color: #FAF8F5;
    border: 1px solid rgba(200, 167, 106, 0.2);
}

.is-btn--outline:hover {
    border-color: #C8A76A;
    color: #C8A76A;
}

.is-btn--dark {
    background-color: #111111;
    color: #FAF8F5;
    border-color: #111111;
}

.is-btn--dark:hover {
    background-color: #1e1e1e;
    border-color: #1e1e1e;
}

.is-btn--white {
    background-color: #fff;
    color: #111111;
    border-color: #fff;
}

.is-btn--white:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}

.is-btn--ghost {
    background-color: transparent;
    color: #FAF8F5;
    border-color: transparent;
}

.is-btn--ghost:hover {
    color: #C8A76A;
}

.is-btn__arrow {
    transition: transform 150ms cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.is-btn:hover .is-btn__arrow {
    transform: translateX(4px);
}


/* ==========================================================================
   HERO
   ========================================================================== */
.is-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.is-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.is-hero__slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.is-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.is-hero__slide--active {
    opacity: 1;
}

.is-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(17, 17, 17, 0.88) 0%,
        rgba(17, 17, 17, 0.55) 50%,
        rgba(17, 17, 17, 0.25) 100%
    );
}

.is-hero .elementor-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.is-hero__content {
    position: relative;
    max-width: 640px;
    z-index: 1;
}

.is-hero__services {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D8D5CF;
}

.is-hero__services-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #C8A76A;
}

.is-hero__title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: #FAF8F5;
    margin-bottom: 2rem;
}

.is-hero__title-accent {
    display: block;
    color: #C8A76A;
    font-style: italic;
}

.is-hero__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #D8D5CF;
    margin-bottom: 3rem;
    max-width: 480px;
}

.is-hero__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.is-hero__actions--full {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.is-hero__actions--full .is-btn {
    justify-content: center;
}

.is-hero__follow {
    position: absolute;
    left: 2rem;
    bottom: 50%;
    transform: translateY(50%) rotate(-90deg);
    transform-origin: center;
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D8D5CF;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.is-hero__follow-line {
    width: 40px;
    height: 1px;
    background-color: rgba(200, 167, 106, 0.2);
}

.is-hero__scroll {
    position: absolute;
    right: 2rem;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.is-hero__scroll-text {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D8D5CF;
    writing-mode: vertical-rl;
}

.is-hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #C8A76A, transparent);
    animation: isScrollPulse 2s ease-in-out infinite;
}

@keyframes isScrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}


/* ==========================================================================
   PARTNERS
   ========================================================================== */
.is-partners {
    padding: 4rem 0;
    background-color: #111111;
}

.is-partners .elementor-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.is-partners__header {
    text-align: center;
    margin-bottom: 3rem;
}

.is-partners__title {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D8D5CF;
}

.is-partners__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.is-partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-partners__logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.is-partners__icon {
    width: 32px;
    height: 32px;
    color: #FAF8F5;
    flex-shrink: 0;
}

.is-partners__logo-img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-partners__item:hover .is-partners__logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

.is-partners__logo-name {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FAF8F5;
    white-space: nowrap;
    line-height: 1.2;
}

.is-partners__logo-name--uppercase {
    text-transform: uppercase;
}

.is-partners__logo-name--lowercase {
    text-transform: none;
    letter-spacing: 0.05em;
}

.is-partners__logo-name--small {
    font-size: 0.75rem;
    font-weight: 500;
}

.is-partners__logo-sub {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #D8D5CF;
    margin-left: -4px;
}


/* ==========================================================================
   PROJECTS (new IS version)
   ========================================================================== */
.is-projects {
    padding: 8rem 0;
    background-color: #111111;
}

.is-projects .elementor-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.is-projects__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.is-projects__sidebar {
    position: sticky;
    top: 8rem;
}

.is-projects__eyebrow {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A76A;
    margin-bottom: 1rem;
}

.is-projects__title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    color: #FAF8F5;
    margin-bottom: 2rem;
}

.is-projects .divider {
    width: 60px;
    height: 1px;
    background-color: #C8A76A;
    border: none;
    margin: 1.5rem 0;
}

.is-projects__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #D8D5CF;
    margin-bottom: 3rem;
    max-width: 280px;
}

.is-projects__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FAF8F5;
    transition: color 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-projects__view-all:hover {
    color: #C8A76A;
}

.is-projects__view-all-arrow {
    transition: transform 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-projects__view-all:hover .is-projects__view-all-arrow {
    transform: translateX(4px);
}

.is-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.is-projects__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #D8D5CF;
}

.project-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card__image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #1a1a1a;
}

.project-card__image {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card__image {
    transform: scale(1.05);
}

.project-card__info {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-card__category {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C8A76A;
    margin-bottom: 4px;
}

.project-card__name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1rem;
    color: #FAF8F5;
}

.project-card__arrow {
    color: #D8D5CF;
    transition: all 150ms cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.project-card:hover .project-card__arrow {
    color: #C8A76A;
    transform: translateX(4px);
}


/* ==========================================================================
   SERVICES
   ========================================================================== */
.is-services {
    padding: 8rem 0;
    background-color: #1a1a1a;
}

.is-services .elementor-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.is-services__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.is-services__header {
    position: sticky;
    top: 8rem;
}

.is-services__eyebrow {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A76A;
    margin-bottom: 1rem;
}

.is-services__title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    color: #FAF8F5;
}

.is-services .divider {
    width: 60px;
    height: 1px;
    background-color: #C8A76A;
    border: none;
    margin: 1.5rem 0;
}

.is-services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.service-card {
    padding: 2rem 1.5rem;
    border-left: 1px solid rgba(200, 167, 106, 0.2);
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.service-card:hover {
    background-color: rgba(200, 167, 106, 0.05);
}

.service-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.5rem;
    color: #C8A76A;
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card__icon i {
    font-size: 2rem;
    color: #C8A76A;
}

.service-card__title {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FAF8F5;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card__description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #D8D5CF;
    margin-bottom: 1.5rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FAF8F5;
    transition: color 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__link {
    color: #C8A76A;
}

.service-card__link-arrow {
    transition: transform 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__link-arrow {
    transform: translateX(4px);
}


/* ==========================================================================
   PROCESS
   ========================================================================== */
.is-process {
    padding: 8rem 0;
    background-color: #111111;
}

.is-process .elementor-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.is-process__header {
    text-align: center;
}

.is-process__eyebrow {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A76A;
    margin-bottom: 1rem;
}

.is-process__title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #FAF8F5;
    margin-bottom: 0;
}

.is-process__steps {
    display: grid;
    position: relative;
    counter-reset: process-card;
}

.is-process__steps[data-connector-pos="top"] {
    align-items: start;
}

.is-process__steps[data-connector-pos="middle"] {
    align-items: center;
}

/* ==========================================================================
   PROCESS — Card
   ========================================================================== */
.process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #1e1e1e;
    border: 1px solid rgba(200, 167, 106, 0.15);
    border-radius: 8px;
    padding: 24px 20px;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    align-items: center;
}

.process-card__number-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.process-card__number {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
    color: #C8A76A;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.process-card__title {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FAF8F5;
    margin-bottom: 8px;
    line-height: 1.4;
    width: 100%;
}

.process-card__description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #D8D5CF;
    width: 100%;
}

/* ==========================================================================
   PROCESS — Connector
   ========================================================================== */
.process-connector {
    --connector-width: 40px;
    --connector-thickness: 2px;
    --connector-color: #C8A76A;
    --connector-spacing: 16px;
    --arrow-size: 10px;

    position: relative;
    width: var(--connector-width);
    height: var(--connector-thickness);
    background: var(--connector-color);
    margin: var(--connector-spacing) auto;
    flex-shrink: 0;
}

.process-connector__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: var(--arrow-size) solid var(--connector-color);
    border-top: calc(var(--arrow-size) * 0.6) solid transparent;
    border-bottom: calc(var(--arrow-size) * 0.6) solid transparent;
}

/* Connector position: align with number on top */
[data-connector-pos="top"] .process-connector {
    margin-top: 0;
}

[data-connector-pos="middle"] .process-connector {
    margin-top: auto;
    margin-bottom: auto;
}

/* ==========================================================================
   PROCESS — Animation
   ========================================================================== */
@keyframes isProcessFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes isProcessFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes isProcessFadeDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes isProcessZoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

[data-animation="fade-in"] .process-card {
    animation: isProcessFadeIn 0.6s ease-out both;
}

[data-animation="fade-up"] .process-card {
    animation: isProcessFadeUp 0.6s ease-out both;
}

[data-animation="fade-down"] .process-card {
    animation: isProcessFadeDown 0.6s ease-out both;
}

[data-animation="zoom-in"] .process-card {
    animation: isProcessZoomIn 0.6s ease-out both;
}

/* Stagger animation — each card gets individual delay via inline style */


/* ==========================================================================
   TESTIMONIALS & JOURNAL (Combined)
   ========================================================================== */
.is-tj {
    background-color: #1a1a1a;
}

.is-tj__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.is-tj__layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: start;
}

/* --- Testimonial Card --- */
.is-tj__testimonial {
    padding: 2rem;
    background-color: #1e1e1e;
    border: 1px solid rgba(200, 167, 106, 0.2);
}

.is-tj__test-eyebrow {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A76A;
    margin-bottom: 1.5rem;
}

.is-tj__test-quote {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: #FAF8F5;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1.5rem;
    border: none;
}

.is-tj__test-quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -8px;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3rem;
    color: #C8A76A;
    line-height: 1;
}

.is-tj__test-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.is-tj__test-author-name {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FAF8F5;
}

.is-tj__test-author-project {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.875rem;
    color: #D8D5CF;
}

/* --- Journal Block --- */
.is-tj__journal {
    display: flex;
    flex-direction: column;
}

.is-tj__journal-header {
    margin-bottom: 2.5rem;
}

.is-tj__journal-eyebrow {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A76A;
}

.is-tj__journal-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* --- Journal Card --- */
.is-tj__journal-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(200, 167, 106, 0.2);
    cursor: pointer;
    transition: padding-left 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-tj__journal-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.is-tj__journal-card:hover {
    padding-left: 1rem;
}

.is-tj__card-image-wrapper {
    width: 120px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #1e1e1e;
}

.is-tj__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-tj__journal-card:hover .is-tj__card-image {
    transform: scale(1.05);
}

.is-tj__card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.is-tj__card-category {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C8A76A;
    margin-bottom: 0.5rem;
}

.is-tj__card-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #FAF8F5;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.is-tj__card-excerpt {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #D8D5CF;
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.is-tj__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FAF8F5;
    transition: color 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-tj__journal-card:hover .is-tj__card-link {
    color: #C8A76A;
}

.is-tj__empty {
    text-align: center;
    padding: 3rem;
    color: #D8D5CF;
}


/* ==========================================================================
   EXISTING PROJECT WIDGETS (keep from original)
   ========================================================================== */
.project-wrap {
    .filters {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        flex-wrap: wrap;

        button {
            background-color: transparent;
            color: var(--primary-color);
            border: none;
            padding: 10px 20px;
            margin: 0 5px;
            cursor: pointer;
            font-family: var(--font-family);
            text-transform: uppercase;
            font-weight: 500;
            padding: 0px;
            margin: 0px 10px 20px;

            &.active {
                background-color: transparent;
                color: var(--primary-color);
                font-weight: 700;
                border-bottom: 2px solid var(--primary-color);
                border-radius: 0px;
            }
        }
    }

    .grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 20px;
        position: relative;

        .grid-item {
            height: 200px;
            position: relative;
            overflow: hidden;

            .project-image{
                filter: grayscale(100%);
            }

            .overlay {
                position: absolute;
                width: 100%;
                height: 0px;
                left: 0px;
                bottom: 0px;
                background-color: rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(8px);
                color: var(--secondary-color);
                font-family: var(--font-family);
                display: block;
                transform: translateY(100%);
                transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

                h4 {
                    font-size: 1.4em;
                }

                h6 {
                    font-size: 1.1em;
                }

                .project-title{
                    display: block;
                    width: 100%;
                    height: 100%;
                    color: var(--secondary-color);
                    font-size: 0.8em;
                }

                i {
                    color: var(--secondary-color);
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    font-size: 1.6em;
                    display: inline-block;
                }
            }

            &:hover {
                .project-image {
                    filter: grayscale(0%);
                }
                .overlay {
                    height: auto;
                    transform: translateY(-0%);
                    transition: all 0.3s ease-in-out;
                }
            }
        }
    }

}

/* Responsive — Existing Project Widgets */
@media (max-width: 1024px) {
    .project-wrap .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .project-wrap .grid .grid-item {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .project-wrap .grid .grid-item .project-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .project-wrap .filters {
        gap: 8px 16px;
        margin-bottom: 16px;
    }

    .project-wrap .filters button {
        margin: 0;
        min-height: 36px;
    }

    .project-wrap .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .project-wrap .grid .grid-item .overlay {
        height: auto;
        min-height: 0;
        padding: 12px;
        transform: translateY(0);
    }

    .project-wrap .grid .grid-item .overlay h4 {
        font-size: 1.1em;
    }

    .project-wrap .grid .grid-item .overlay h6 {
        font-size: 0.9em;
    }

    .project-wrap .grid .grid-item .overlay .project-title {
        height: auto;
        padding-right: 24px;
    }

    .project-wrap .grid .grid-item .overlay i {
        top: 8px;
        right: 8px;
        font-size: 1.25em;
    }
}

@media (max-width: 480px) {
    .project-wrap .grid {
        grid-template-columns: 1fr;
    }
}

/* Single Project */
.single-project-wrap{
    min-height: 300px;
    position: relative;
    font-family: var(--font-family);
    .project-content{
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease-in-out;

        .project-link{
            display: block;
            width: 100%;
            height: 100%;
            text-align: center;
            place-content: center;
            transform: scale(.2);
            transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
            h4{
                color: var(--secondary-color);
            }

            h6{
                color: var(--secondary-color);
            }
        }

        .glightbox{
            position: absolute;
            font-size: 14px;
            width: 14px;
            right: -20px;
            top: 10px;
            color: var(--secondary-color);
            z-index: 2;
            transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        }
    }

    &:hover{
        .project-content{
            opacity: 1;
            transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
            .project-link{
                transform: scale(1);
                transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
            }

            .glightbox{
                right: 10px;
                transition: all 0.5 cubic-bezier(0.075, 0.82, 0.165, 1);
            }

        }
    }
}


/* ==========================================================================
   RESPONSIVE — Hero
   ========================================================================== */
@media (max-width: 1024px) {
    .is-hero {
        min-height: 80vh;
        align-items: center;
        padding-top: 6rem;
    }

    .is-hero__follow {
        display: none;
    }

    .is-hero__scroll {
        display: none;
    }
}

@media (max-width: 768px) {
    .is-hero {
        min-height: 90vh;
        padding: 5rem 0 4rem;
    }

    .is-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .is-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .is-hero__actions--full {
        grid-template-columns: 1fr;
    }

    .is-hero__actions--full .is-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .is-hero {
        min-height: 100vh;
    }

    .is-hero__services {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}


/* ==========================================================================
   RESPONSIVE — Projects & Services (sidebar layouts)
   ========================================================================== */
@media (max-width: 1200px) {
    .is-projects__layout {
        grid-template-columns: 240px 1fr;
    }

    .is-services__layout {
        grid-template-columns: 240px 1fr;
    }
}

@media (max-width: 1024px) {
    .is-projects__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .is-projects__sidebar {
        position: static;
        max-width: 480px;
    }

    .is-projects__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .is-services__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .is-services__header {
        position: static;
    }

    .is-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card {
        border-left: 1px solid rgba(200, 167, 106, 0.2);
        padding-left: 1.5rem;
    }

    .service-card:first-child {
        border-left: 1px solid rgba(200, 167, 106, 0.2);
        padding-left: 1.5rem;
    }

    .is-tj__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .is-projects,
    .is-services,
    .is-process {
        padding: 6rem 0;
    }

    .is-process__title {
        font-size: 2.25rem;
    }

    .is-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .is-projects__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .is-tj {
        padding: 4rem 0 !important;
    }

    .is-tj__journal-card {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .is-tj__card-image-wrapper {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .is-projects__grid {
        grid-template-columns: 1fr;
    }

    .project-card__info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .is-services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-left: none;
        border-top: 1px solid rgba(200, 167, 106, 0.2);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .is-process__steps {
        grid-template-columns: 1fr;
    }

    .process-connector {
        margin-left: 0;
        margin-right: 0;
    }

    .is-tj__journal-card {
        grid-template-columns: 1fr;
    }

    .is-tj__card-image-wrapper {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .is-partners__grid {
        flex-direction: column;
        gap: 2rem;
    }

    .is-partners__item {
        flex: none;
    }
}


/* ==========================================================================
   HEADER
   ========================================================================== */
.is-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid transparent;
    transition: background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
                padding 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-header--scrolled {
    background-color: rgba(26, 23, 21, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(200, 167, 106, 0.2);
}

.is-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.is-header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.is-header__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.is-header__logo-icon svg {
    width: 100%;
    height: 100%;
}

.is-header__logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.is-header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.is-header__logo-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FAF8F5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.is-header__logo-tagline {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    color: #D8D5CF;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2px;
}

.is-header__nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.is-header__nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.is-header__nav-link {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #FAF8F5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0;
    position: relative;
    transition: color 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C8A76A;
    transition: width 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-header__nav-link:hover {
    color: #C8A76A;
}

.is-header__nav-link:hover::after {
    width: 100%;
}

.is-header__nav-link--active {
    color: #C8A76A;
}

.is-header__nav-link--active::after {
    width: 100%;
}

.is-header__cta {
    padding: 12px 24px;
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    border: 1px solid rgba(200, 167, 106, 0.2);
    background: transparent;
    color: #FAF8F5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-header__cta:hover {
    border-color: #C8A76A;
    color: #C8A76A;
}

.is-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.is-header__toggle-line {
    width: 100%;
    height: 1.5px;
    background-color: #FAF8F5;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.is-header__toggle--active .is-header__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.is-header__toggle--active .is-header__toggle-line:nth-child(2) {
    opacity: 0;
}

.is-header__toggle--active .is-header__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.is-header__mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111111;
    z-index: 999;
    padding: 80px 2rem 4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1),
                visibility 300ms;
}

.is-header__mobile-menu--open {
    opacity: 1;
    visibility: visible;
}

.is-header__mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.is-header__mobile-nav-link {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.5rem;
    color: #FAF8F5;
    transition: color 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-header__mobile-nav-link:hover {
    color: #C8A76A;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.is-footer {
    padding: 6rem 0 2rem;
    background-color: #111111;
    border-top: 1px solid rgba(200, 167, 106, 0.2);
}

.is-footer__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.is-footer__main {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(200, 167, 106, 0.2);
}

.is-footer__brand {
    max-width: 280px;
}

.is-footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.is-footer__logo-icon {
    width: 36px;
    height: 36px;
}

.is-footer__logo-icon svg {
    width: 100%;
    height: 100%;
}

.is-footer__logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.is-footer__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.is-footer__logo-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FAF8F5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.is-footer__logo-tagline {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    color: #D8D5CF;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

.is-footer__description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #D8D5CF;
    margin-bottom: 1.5rem;
}

.is-footer__social {
    display: flex;
    gap: 1rem;
}

.is-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(200, 167, 106, 0.2);
    color: #D8D5CF;
    transition: all 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-footer__social-link:hover {
    border-color: #C8A76A;
    color: #C8A76A;
}

.is-footer__social-link svg {
    width: 16px;
    height: 16px;
}

.is-footer__nav-column {
    min-width: 0;
}

.is-footer__nav-title {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FAF8F5;
    margin-bottom: 1.5rem;
}

.is-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.is-footer__nav-link {
    font-size: 0.875rem;
    color: #D8D5CF;
    transition: color 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-footer__nav-link:hover {
    color: #C8A76A;
}

.is-footer__contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 1rem;
}

.is-footer__contact-item:last-child {
    margin-bottom: 0;
}

.is-footer__contact-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #D8D5CF;
}

.is-footer__contact-value {
    font-size: 0.875rem;
    color: #FAF8F5;
    line-height: 1.5;
}

.is-footer__contact-value a {
    transition: color 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-footer__contact-value a:hover {
    color: #C8A76A;
}

.is-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
}

.is-footer__copyright {
    font-size: 0.75rem;
    color: #D8D5CF;
}

.is-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.is-footer__legal-link {
    font-size: 0.75rem;
    color: #D8D5CF;
    transition: color 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-footer__legal-link:hover {
    color: #C8A76A;
}


/* ==========================================================================
   RESPONSIVE — Header
   ========================================================================== */
@media (max-width: 1024px) {
    .is-header__nav {
        display: none;
    }

    .is-header__toggle {
        display: flex;
    }

    .is-header__mobile-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .is-header__logo-name {
        font-size: 1rem;
    }

    .is-header__logo-tagline {
        font-size: 0.625rem;
    }
}


/* ==========================================================================
   RESPONSIVE — Footer
   ========================================================================== */
@media (max-width: 1024px) {
    .is-footer__main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .is-footer__brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .is-footer {
        padding: 4rem 0 1.5rem;
    }

    .is-footer__main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .is-footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .is-footer__legal {
        justify-content: center;
    }
}


/* ==========================================================================
   SERVICES ALT (Alternate Version — 3-Column Grid)
   ========================================================================== */
.services {
    padding: 8rem 0;
    background-color: #1a1a1a;
}

.services .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.services__header {
    position: sticky;
    top: 8rem;
}

.services__eyebrow {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A76A;
    margin-bottom: 1rem;
}

.services__title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    color: #FAF8F5;
}

.services .divider {
    width: 60px;
    height: 1px;
    background-color: #C8A76A;
    border: none;
    margin: 1.5rem 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    background-color: #1e1e1e;
    border: 1px solid transparent;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.service-card:hover {
    border-color: rgba(200, 167, 106, 0.2);
    background-color: rgba(200, 167, 106, 0.05);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #C8A76A;
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card__icon i {
    font-size: 2.25rem;
    color: #C8A76A;
}

.service-card__title {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FAF8F5;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card__description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #D8D5CF;
    margin-bottom: 1.5rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C8A76A;
    transition: gap 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__link {
    gap: 1rem;
}

.service-card__link-arrow {
    transition: transform 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__link-arrow {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   RESPONSIVE — Services Alt
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .services__layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .services__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services__header {
        position: static;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 6rem 0;
    }

    .services__title {
        font-size: 2.25rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
