﻿:root {
  --bg-main: #F5F1E8;
  --bg-soft: #FBF8F2;
  --bg-deep: #19382F;
  --text: #18201D;
  --muted: #66706A;
  --line: rgba(24, 32, 29, .12);
  --copper: #B9733D;
  --white: #fff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-serif: var(--font-heading);
  --font-text: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 80px;
  --shadow: 0 28px 80px rgba(25, 56, 47, .10);
  --ease: 280ms ease;
  --premium: 520ms cubic-bezier(.22, 1, .36, 1)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 28px)
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased
}

body.is-locked {
  overflow: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit
}

button,
input,
textarea {
  font: inherit
}

section {
  scroll-margin-top: calc(var(--header-h) + 30px)
}

.site-header {
  height: var(--header-h);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  pointer-events: none;
  border-bottom: none;
}

.header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100% - 48px, 1500px);
  margin: 0 auto;

  .logo {
    display: none !important;
  }

  .is-scrolled .logo {
    display: none !important;
  }

  .primary-nav {
    display: none;
    /* Hidden on desktop now, use burger */
  }

  .lang-switcher a {
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--ease);
  }

  .lang-switcher a:hover,
  .lang-switcher a.is-active {
    color: #fff;
  }

  .is-scrolled .lang-switcher a {
    color: rgba(24, 32, 29, 0.6);
  }

  .is-scrolled .lang-switcher a:hover,
  .is-scrolled .lang-switcher a.is-active {
    color: var(--bg-deep);
  }

  .lang-switcher {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0 16px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: auto;
    transition: all var(--ease);
  }

  .is-scrolled .lang-switcher {
    background: rgba(185, 115, 61, 0.12);
    border-color: rgba(185, 115, 61, 0.25);
  }

  .lang-switcher a.is-active {
    border-bottom: 2px solid var(--copper);
    padding-bottom: 2px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: none;
    margin-left: auto;
  }

  .header-actions>* {
    pointer-events: auto;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 750;
    cursor: pointer;
    transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease), color var(--ease);
  }

  .btn:hover {
    transform: translateY(-2px);
  }

  .btn-outline {
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--ease);
  }

  .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
  }

  .is-scrolled .btn-outline {
    background: rgba(185, 115, 61, 0.12);
    border-color: rgba(185, 115, 61, 0.25);
    color: var(--bg-deep);
  }

  .is-scrolled .btn-outline:hover {
    background: rgba(185, 115, 61, 0.22);
  }

  .btn-hero,
  .btn-dark {
    background: var(--bg-deep);
    color: #fff;
    border-color: var(--bg-deep);
    box-shadow: 0 16px 38px rgba(25, 56, 47, .18);
  }

  .btn-hero {
    background: var(--copper);
    border-color: var(--copper);
  }

  .btn-light {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
  }

  .burger {
    display: block;
    /* Show on desktop now */
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    cursor: pointer;
    transition: all var(--ease);
  }

  .is-scrolled .burger {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(24, 32, 29, 0.1);
  }

  .is-scrolled .burger span {
    background: var(--bg-deep);
  }

  .burger span {
    position: absolute;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .burger span:first-child {
    top: 18px;
  }

  .burger span:last-child {
    bottom: 18px;
  }

  .burger[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .burger[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }
}

.mobile-nav {
    position: fixed;
    inset: 0 0 auto 0;
    background: rgba(25, 56, 47, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: grid;
    gap: 24px;
    padding: 120px 24px 48px;
    transform: translateY(-100%);
    transition: transform var(--premium);
    z-index: 49;
    text-align: center;
  }

  .mobile-nav.is-active {
    transform: translateY(0);
  }

  .mobile-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: clamp(24px, 4vw, 42px);
    font-family: var(--font-heading);
    letter-spacing: .02em;
    transition: color var(--ease);
  }

  .mobile-nav a:hover {
    color: var(--copper);
  }

  .mobile-lang {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-lang a {
    font-family: var(--font-text);
    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .hero {
    min-height: 100dvh;
    position: relative;
    display: grid;
    align-items: center;
    background: url('../images/hero-new-pool.jpg') center/cover no-repeat;
    overflow: hidden
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .16) 55%, rgba(0, 0, 0, .06)), linear-gradient(0deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, 0) 48%)
  }

  .hero-branding {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
  }

  .hero-company-name {
    color: #fff;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: 0.05em;
  }

  .hero-logo-placeholder {
    width: 64px;
    height: 64px;
    background: var(--copper);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1500px);
    margin: 0 auto;
    color: #fff;
    max-width: 850px;
    justify-self: start
  }

  .hero-kicker,
  .section-eyebrow {
    margin: 0 0 18px;
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase
  }

  .hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(52px, 7vw, 108px);
    line-height: .9;
    letter-spacing: -.055em;
    margin: 0 0 26px;
    text-wrap: balance
  }

  .hero p:not(.hero-kicker) {
    font-size: clamp(17px, 1.6vw, 23px);
    max-width: 720px;
    color: rgba(255, 255, 255, .84);
    margin: 0 0 34px
  }

  .hero-meta {
    display: block;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82)
  }

  .trust-strip {
    background: #FBF8F2;
    border-block: 1px solid var(--line)
  }

  .trust-grid {
    width: min(100%, 1500px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
  }

  .trust-item {
    padding: 34px 42px;
    border-left: 1px solid var(--line)
  }

  .trust-item:first-child {
    border-left: 0
  }

  .trust-item strong {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
    color: var(--bg-deep)
  }

  .trust-item span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em
  }

  .section-head {
    width: min(100% - 48px, 1050px);
    margin: 0 auto 46px;
    text-align: center
  }

  .section-head.compact {
    margin-bottom: 34px
  }

  .section-head h2,
  .sip-showcase__header h2,
  .project-guide__intro h2,
  .final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5.4vw, 84px);
    line-height: .95;
    letter-spacing: -.045em;
    margin: 0;
    text-wrap: balance
  }

  .section-head p:not(.section-eyebrow),
  .sip-showcase__header p {
    margin: 20px auto 0;
    max-width: 820px;
    color: var(--muted);
    font-size: clamp(16px, 1.4vw, 21px)
  }

  .catalog,
  .packages,
  .included,
  .faq {
    padding: clamp(86px, 9vw, 140px) 0
  }

  .filter-bar {
    width: min(100% - 48px, 1500px);
    margin: 0 auto 30px;
    display: flex;
    gap: 10px;
    overflow: auto;
    padding-bottom: 10px
  }

  .filter-btn {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .5);
    border-radius: 999px;
    white-space: nowrap;
    padding: 12px 18px;
    cursor: pointer;
    color: var(--muted);
    font-weight: 750
  }

  .filter-btn.is-active {
    background: var(--bg-deep);
    border-color: var(--bg-deep);
    color: #fff
  }

  .catalog-grid {
    width: min(100% - 48px, 1500px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px
  }

  .catalog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 52px rgba(25, 56, 47, .07);
    transition: transform var(--premium), box-shadow var(--premium), opacity var(--ease)
  }

  .catalog-card.is-hidden {
    display: none
  }

  .catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
  }

  .card-media {
    position: relative;
    aspect-ratio: 1.32/1;
    overflow: hidden;
    background: linear-gradient(180deg, #efe8dd, #e7ded0);
    padding: 12px
  }

  .card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--premium);
    filter: drop-shadow(0 16px 28px rgba(25, 56, 47, .14))
  }

  .catalog-card:hover .card-media img {
    transform: scale(1.025)
  }

  .render-label,
  .card-badge {
    position: absolute;
    left: 14px;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(12px)
  }

  .render-label {
    top: 14px;
    background: rgba(255, 255, 255, .78);
    color: var(--bg-deep)
  }

  .card-badge {
    bottom: 14px;
    background: rgba(25, 56, 47, .82);
    color: #fff
  }

  .card-body {
    padding: 20px
  }

  .card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
  }

  .card-head h3 {
    font-family: var(--font-heading);
    font-size: 27px;
    margin: 0
  }

  .card-head strong {
    color: var(--copper)
  }

  .card-body p {
    color: var(--muted);
    font-size: 14px;
    min-height: 58px;
    margin-bottom: 18px
  }

  .card-specs {
    display: none
  }

  .card-specs span {
    display: none
  }

  .card-action {
    width: 100%
  }

  .project-guide {
    padding: clamp(96px, 10vw, 160px) 0;
    background: linear-gradient(180deg, var(--bg-main), #EFE7DA)
  }

  .project-guide__container {
    width: min(100% - 48px, 1480px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, .76fr) minmax(0, 1.24fr);
    gap: clamp(56px, 7vw, 120px);
    align-items: start
  }

  .project-guide__intro {
    position: sticky;
    top: 120px
  }

  .project-guide__intro h2 {
    font-size: clamp(48px, 6vw, 86px)
  }

  .project-guide__intro>p:not(.section-eyebrow):not(.project-guide__hint) {
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.55
  }

  .project-guide__intro .btn {
    margin-top: 32px
  }

  .project-guide__hint {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px
  }

  .project-guide__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px
  }

  .guide-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid var(--line);
    border-top: 3px solid transparent;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .68), rgba(251, 248, 242, .92));
    text-align: left;
    color: var(--text);
    cursor: pointer;
    box-shadow: 0 18px 46px rgba(25, 56, 47, .055);
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), opacity var(--ease)
  }

  .project-guide__cards.has-active .guide-card:not(.is-active) {
    opacity: .72
  }

  .guide-card:hover {
    transform: translateY(-4px)
  }

  .guide-card.is-active {
    border-top-color: var(--copper);
    background: #FDFBF7;
    box-shadow: 0 28px 70px rgba(25, 56, 47, .11);
    transform: translateY(-6px)
  }

  .guide-card:focus-visible,
  .sip-zone:focus-visible,
  .sip-feature:focus-visible,
  .filter-btn:focus-visible,
  .btn:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 4px
  }

  .guide-card__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px
  }

  .guide-card__number {
    font-family: var(--font-heading);
    font-size: clamp(34px, 3vw, 54px);
    line-height: 1;
    color: rgba(25, 56, 47, .36)
  }

  .guide-card.is-active .guide-card__number {
    color: var(--copper)
  }

  .guide-card__tag,
  .guide-card__chips span,
  .project-guide__chips span {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    color: var(--muted);
    background: rgba(255, 255, 255, .65)
  }

  .guide-card__title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.04
  }

  .guide-card__short {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15.5px
  }

  .guide-card__details {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 360ms ease, opacity 280ms ease, margin-top 280ms ease
  }

  .guide-card.is-active .guide-card__details {
    max-height: 360px;
    opacity: 1;
    margin-top: 20px
  }

  .guide-card__expanded {
    display: block;
    color: var(--muted);
    font-size: 14.5px
  }

  .guide-card__label {
    display: block;
    margin-top: 18px;
    color: var(--copper);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
  }

  .guide-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px
  }

  .guide-card__link {
    display: inline-flex;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 800;
    color: var(--bg-deep)
  }

  .project-guide__summary {
    margin-top: 20px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .52);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
  }

  .project-guide__summary p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
  }

  .project-guide__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
  }

  .project-guide__summary a {
    white-space: nowrap;
    font-weight: 800;
    text-decoration: none;
    color: var(--bg-deep)
  }

  .package-grid,
  .included-grid {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
  }

  .package-card,
  .included-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .58);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 18px 50px rgba(25, 56, 47, .06)
  }

  .package-card span {
    font-family: var(--font-heading);
    font-size: 34px;
    color: var(--copper)
  }

  .package-card h3,
  .included-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin: 16px 0 10px
  }

  .package-card p,
  .included-card li {
    color: var(--muted)
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .included-card ul {
    list-style: none;
    padding: 0;
    margin: 0
  }

  .included-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line)
  }

  .included-card li:before {
    content: '✓';
    color: var(--copper);
    font-weight: 800;
    margin-right: 10px
  }

  .sip-showcase {
    padding: clamp(96px, 10vw, 160px) 0;
    background: radial-gradient(circle at 50% 0%, rgba(185, 115, 61, .08), transparent 34%), var(--bg-main)
  }

  .sip-showcase__container {
    width: min(100% - 48px, 1500px);
    margin: 0 auto
  }

  .sip-showcase__header {
    text-align: center;
    max-width: 960px;
    margin: 0 auto clamp(48px, 6vw, 76px)
  }

  .sip-showcase__stage {
    position: relative;
    min-height: 700px;
    border: 1px solid var(--line);
    border-radius: 40px;
    background: radial-gradient(circle at 50% 45%, rgba(185, 115, 61, .08), transparent 42%), linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(251, 248, 242, .95));
    box-shadow: var(--shadow);
    overflow: hidden
  }

  .sip-showcase__product {
    position: absolute;
    left: 50%;
    top: 43%;
    width: min(54%, 760px);
    transform: translate(-50%, -50%);
    z-index: 2
  }

  .sip-showcase__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 34px 56px rgba(25, 56, 47, .18));
    pointer-events: none;
    user-select: none
  }

  .sip-showcase__fallback {
    min-height: 420px;
    border: 1px dashed var(--line);
    border-radius: 28px;
    display: grid;
    place-items: center;
    color: var(--muted);
    background: rgba(255, 255, 255, .45)
  }

  .sip-zone {
    position: absolute;
    z-index: 4;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 16px
  }

  .sip-zone::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 1px solid transparent;
    background: transparent;
    transition: border-color var(--ease), background var(--ease), box-shadow var(--ease), transform var(--ease)
  }

  .sip-zone:hover::after,
  .sip-zone.is-active::after,
  .sip-zone:focus-visible::after {
    border-color: rgba(185, 115, 61, .55);
    background: rgba(185, 115, 61, .05);
    box-shadow: 0 0 24px rgba(185, 115, 61, .16);
    transform: translateY(-2px)
  }

  .sip-zone--outer-osb {
    left: 8%;
    top: 14%;
    width: 82%;
    height: 25%
  }

  .sip-zone--eps-core {
    left: 5%;
    top: 42%;
    width: 88%;
    height: 29%
  }

  .sip-zone--inner-osb {
    left: 4%;
    top: 73%;
    width: 90%;
    height: 18%
  }

  .sip-zone--structural-joint {
    left: 77%;
    top: 42%;
    width: 20%;
    height: 48%
  }

  .sip-zone--membrane {
    left: 6%;
    top: 38%;
    width: 87%;
    height: 6%
  }

  .sip-feature {
    position: absolute;
    z-index: 5;
    width: min(225px, 21vw);
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-left: 3px solid transparent;
    border-radius: 18px;
    background: rgba(255, 255, 255, .64);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 46px rgba(25, 56, 47, .08);
    text-align: left;
    cursor: pointer;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease), opacity var(--ease)
  }

  .sip-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .82)
  }

  .sip-feature.is-active {
    border-left-color: var(--copper);
    background: rgba(253, 251, 247, .94);
    box-shadow: 0 24px 60px rgba(25, 56, 47, .12)
  }

  .sip-feature__number {
    font-family: var(--font-heading);
    font-size: 24px;
    color: rgba(25, 56, 47, .36);
    display: block;
    margin-bottom: 6px
  }

  .sip-feature.is-active .sip-feature__number {
    color: var(--copper)
  }

  .sip-feature__title {
    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.05;
    display: block
  }

  .sip-feature__text {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4
  }

  .sip-feature--factory {
    left: 5%;
    top: 18%
  }

  .sip-feature--thermal {
    right: 5%;
    top: 18%
  }

  .sip-feature--detailing {
    left: 5%;
    bottom: 22%
  }

  .sip-feature--moisture {
    right: 5%;
    bottom: 22%
  }

  .sip-feature--assembly {
    right: 5%;
    top: 48%
  }

  .sip-layer-info {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    width: min(560px, calc(100% - 48px));
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(251, 248, 242, .88);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 48px rgba(25, 56, 47, .10)
  }

  .sip-layer-info__kicker {
    margin: 0 0 8px;
    color: var(--copper);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
  }

  .sip-layer-info h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin: 0;
    line-height: 1
  }

  .sip-layer-info p:last-child {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13.5px
  }

  .sip-showcase__note {
    text-align: center;
    max-width: 760px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 14px
  }

  .process-story {
    height: 600vh;
    position: relative;
    background: #0f2f27;
    color: #fff;
    margin-inline: calc(50% - 50vw);
    width: 100vw
  }

  .process-story__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: minmax(360px, 38vw) minmax(0, 62vw);
    overflow: hidden
  }

  .process-story__left {
    padding: clamp(46px, 5vw, 84px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #19382F
  }

  .process-story__left h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 76px);
    line-height: .95;
    letter-spacing: -.045em;
    margin: 0 0 18px
  }

  .process-story__left>p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, .72);
    font-size: 18px
  }

  .process-progress {
    height: 2px;
    background: rgba(255, 255, 255, .14);
    margin: 28px 0
  }

  .process-progress span {
    display: block;
    width: var(--process-progress, 0%);
    height: 100%;
    background: var(--copper);
    transition: width var(--ease)
  }

  .process-steps {
    display: grid;
    gap: 12px
  }

  .process-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    background: transparent;
    border: 0;
    text-align: left;
    color: #fff;
    opacity: .42;
    cursor: pointer;
    padding: 8px;
    border-radius: 14px
  }

  .process-step.is-active {
    opacity: 1;
    background: rgba(255, 255, 255, .06)
  }

  .process-step span {
    color: var(--copper);
    font-family: var(--font-heading);
    font-size: 22px
  }

  .process-step strong {
    font-size: 15px
  }

  .process-step em {
    grid-column: 2;
    color: rgba(255, 255, 255, .66);
    font-style: normal;
    font-size: 13px
  }

  .process-story__right {
    position: relative;
    background: radial-gradient(circle at 50% 40%, rgba(185, 115, 61, .16), transparent 36%), #F5F1E8;
    color: var(--text);
    display: grid;
    place-items: center;
    padding: clamp(48px, 6vw, 92px)
  }

  .process-panel {
    position: absolute;
    inset: clamp(48px, 6vw, 92px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 34px;
    padding: 44px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(251, 248, 242, .9));
    box-shadow: var(--shadow);
    opacity: 0;
    transform: scale(.985) translateY(12px);
    transition: opacity 550ms ease, transform 550ms ease
  }

  .process-panel.is-active {
    opacity: 1;
    transform: scale(1) translateY(0)
  }

  .process-panel span {
    font-family: var(--font-heading);
    font-size: 76px;
    color: var(--copper)
  }

  .process-panel h3 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin: 0
  }

  .process-panel p {
    max-width: 560px;
    color: var(--muted);
    font-size: 18px
  }

  .process-story__mobile {
    display: none
  }

  .faq-list {
    width: min(100% - 48px, 960px);
    margin: 0 auto
  }

  .faq-item {
    border-top: 1px solid var(--line);
    padding: 22px 0
  }

  .faq-item:last-child {
    border-bottom: 1px solid var(--line)
  }

  .faq-item summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 25px
  }

  .faq-item p {
    color: var(--muted);
    max-width: 760px
  }

  .final-cta {
    text-align: center;
    padding: clamp(90px, 10vw, 150px) 24px;
    background: var(--bg-deep);
    color: #fff
  }

  .final-cta h2 {
    color: #fff
  }

  .final-cta p {
    color: rgba(255, 255, 255, .72);
    font-size: 20px
  }

  .site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 34px clamp(24px, 5vw, 70px);
    background: #0b211c;
    color: #fff
  }

  .site-footer p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .62)
  }

  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease)
  }

  .modal-overlay.is-active {
    opacity: 1;
    pointer-events: auto
  }

  dialog {
    border: 0;
    padding: 0;
    background: transparent
  }

  dialog::backdrop {
    background: transparent
  }

  .project-modal,
  .offer-modal {
    position: fixed;
    z-index: 90;
    top: 24px;
    bottom: 24px;
    left: 24px;
    right: 24px;
    margin: auto;
    max-width: 1920px;
    width: calc(100% - 48px);
    height: calc(100vh - 48px);
    max-height: calc(100vh - 48px);
    background: #fbf8f1;
    border-radius: 36px;
    padding: 48px;
    box-shadow: 0 40px 120px rgba(24, 32, 29, 0.18);
    border: 1px solid rgba(24, 32, 29, 0.08);
    overflow-y: auto;
  }

  .offer-modal {
    width: min(560px, calc(100% - 32px));
    padding: 48px;
    border-radius: 30px;
  }

  .modal-close, .project-modal__close {
    position: absolute;
    right: 28px;
    top: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(24,32,29,0.18);
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    color: #18201D;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .modal-close:hover, .project-modal__close:hover {
    background: #fff;
    border-color: #b27642;
  }

  .project-modal__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(360px, 0.65fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: stretch;
  }

  .project-modal__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
  }

  .project-modal__image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #e9e2d5;
    min-height: 0;
    width: 100%;
    flex: 1 1 auto;
    box-shadow: 0 16px 48px rgba(24, 32, 29, 0.10);
  }

  .project-modal__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .project-modal__gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(24,32,29,0.10);
    backdrop-filter: blur(10px);
    color: #18201D;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .project-modal__gallery-btn:hover {
    background: #fff;
  }
  .project-modal__gallery-btn--prev {
    left: 20px;
  }
  .project-modal__gallery-btn--next {
    right: 20px;
  }

  .project-modal__thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .project-modal__thumb {
    height: 80px;
    width: 120px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
    border: 2px solid transparent;
  }
  .project-modal__thumb.is-active, .project-modal__thumb:hover {
    opacity: 1;
    border-color: #b27642;
  }

  .project-modal__price {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 13px;
    color: #b27642;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .project-modal__title {
    font-family: var(--font-heading);
    font-size: clamp(52px, 4vw, 76px);
    line-height: 1;
    color: #18201D;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .project-modal__subtitle {
    font-size: 20px;
    color: rgba(24,32,29,0.62);
    margin-bottom: 28px;
    margin-top: 0;
  }

  .project-modal__description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(24,32,29,0.78);
    max-width: 620px;
    margin-bottom: 32px;
  }

  .project-modal__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
  }

  .project-modal__spec {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(24,32,29,0.10);
    border-radius: 999px;
    padding: 14px 20px;
    font-size: 16px;
    color: #18201D;
  }

  .project-modal__highlights {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .project-modal__section-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
    color: #b27642;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .project-modal__highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .project-modal__highlights-list li {
    position: relative;
    padding-left: 28px;
    font-size: 17px;
    color: #18201D;
  }

  .project-modal__highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b27642;
    font-weight: bold;
  }

  .project-modal__planning {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(24,32,29,0.10);
    border-radius: 24px;
    padding: 24px;
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .project-modal__planning-title {
    font-weight: 600;
    font-size: 18px;
    color: #18201D;
    margin-bottom: 8px;
  }

  .project-modal__planning-text {
    font-size: 16px;
    color: rgba(24,32,29,0.78);
    margin: 0;
  }

  .project-modal__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .project-modal__primary, .project-modal__secondary {
    border-radius: 999px;
    padding: 16px 26px;
    font-weight: 700;
    min-height: 52px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
  }

  .project-modal__primary {
    background: #b27642;
    color: #fffaf0;
    border: none;
  }
  .project-modal__primary:hover {
    background: #945d2e;
  }

  .project-modal__secondary {
    background: transparent;
    color: #18201D;
    border: 1px solid rgba(24,32,29,0.18);
  }
  .project-modal__secondary:hover {
    border-color: #b27642;
    background: #fff;
  }

  .offer-modal h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1;
    margin: 10px 0;
  }


  .offer-modal form {
    display: grid;
    gap: 14px
  }

  .offer-modal label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 14px
  }

  .offer-modal input,
  .offer-modal textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 14px 16px;
    color: var(--text)
  }

  .form-success {
    padding: 12px;
    border-radius: 14px;
    background: rgba(25, 56, 47, .08);
    color: var(--bg-deep);
    font-weight: 700
  }

  @media(max-width:1200px) {
    .catalog-grid {
      grid-template-columns: repeat(3, 1fr)
    }

    .header-cta {
      display: none
    }

    .primary-nav {
      gap: 18px
    }

    .project-modal__grid {
      grid-template-columns: 1fr
    }
  }

  @media(max-width:991px) {
    :root {
      --header-h: 64px
    }

    .primary-nav,
    .lang-switcher,
    .header-cta {
      display: none
    }

    .header-inner {
      width: min(100% - 32px, 1500px);
      grid-template-columns: 1fr auto 1fr
    }

    .logo {
      font-size: 25px
    }

    .burger {
      display: block;
      justify-self: end
    }

    .mobile-nav {
      position: fixed;
      inset: 64px 0 auto 0;
      background: #19382F;
      display: grid;
      gap: 18px;
      padding: 28px 24px;
      transform: translateY(-120%);
      transition: transform var(--premium);
      z-index: 49
    }

    .mobile-nav.is-active {
      transform: translateY(0)
    }

    .mobile-nav a {
      text-decoration: none;
      color: #fff;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em
    }

    .mobile-lang {
      display: flex;
      gap: 14px
    }

    .hero {
      min-height: calc(100dvh - 64px)
    }

    .hero-inner {
      width: min(100% - 32px, 1500px)
    }

    .trust-grid {
      grid-template-columns: repeat(2, 1fr)
    }

    .catalog-grid {
      grid-template-columns: repeat(2, 1fr)
    }

    .project-guide__container {
      grid-template-columns: 1fr;
      gap: 48px
    }

    .project-guide__intro {
      position: static
    }

    .package-grid {
      grid-template-columns: 1fr
    }

    .included-grid {
      grid-template-columns: 1fr
    }

    .sip-showcase__stage {
      min-height: auto;
      padding: 24px
    }

    .sip-showcase__product,
    .sip-layer-info,
    .sip-feature {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      bottom: auto;
      transform: none
    }

    .sip-showcase__product {
      width: 100%;
      margin: 0 auto 22px
    }

    .sip-layer-info {
      width: 100%;
      margin-bottom: 16px
    }

    .sip-feature {
      width: 100%;
      margin-bottom: 12px
    }

    .sip-feature:hover,
    .sip-feature.is-active {
      transform: none
    }

    .sip-feature__text {
      display: none
    }

    .sip-feature.is-active .sip-feature__text {
      display: block
    }

    .process-story {
      height: auto;
      width: auto;
      margin: 0;
      background: var(--bg-main);
      color: var(--text);
      padding: 72px 0
    }

    .process-story__sticky {
      display: none
    }

    .process-story__mobile {
      display: block;
      width: min(100% - 32px, 900px);
      margin: 0 auto
    }

    .process-mobile-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 22px;
      margin-bottom: 12px
    }

    .process-mobile-card span {
      font-family: var(--font-heading);
      font-size: 30px;
      color: var(--copper)
    }

    .process-mobile-card h3 {
      font-family: var(--font-heading);
      font-size: 26px;
      margin: 8px 0
    }

    .process-mobile-card p {
      color: var(--muted)
    }
  }

  @media(max-width:768px) {
    .hero h1 {
      font-size: clamp(44px, 13vw, 68px)
    }

    .hero p:not(.hero-kicker) {
      font-size: 16px
    }

    .trust-item {
      padding: 26px 24px
    }

    .section-head,
    .catalog-grid,
    .filter-bar,
    .package-grid,
    .included-grid,
    .faq-list {
      width: min(100% - 32px, 1500px)
    }

    .catalog-grid {
      grid-template-columns: 1fr
    }

    .card-body p {
      min-height: auto
    }

    .project-guide,
    .catalog,
    .packages,
    .included,
    .faq,
    .sip-showcase {
      padding: 72px 0
    }

    .project-guide__container,
    .sip-showcase__container {
      width: min(100% - 32px, 1480px)
    }

    .project-guide__cards {
      grid-template-columns: 1fr
    }

    .guide-card {
      min-height: auto;
      padding: 22px;
      border-radius: 22px;
      transform: none
    }

    .guide-card:hover,
    .guide-card.is-active {
      transform: none
    }

    .guide-card:not(.is-active) .guide-card__short {
      display: none
    }

    .project-guide__summary {
      flex-direction: column;
      align-items: flex-start
    }

    .section-head h2,
    .sip-showcase__header h2,
    .project-guide__intro h2,
    .final-cta h2 {
      font-size: clamp(40px, 12vw, 58px)
    }

    .project-modal,
    .offer-modal {
      border-radius: 22px;
      padding: 22px
    }

    .modal-specs {
      grid-template-columns: 1fr
    }

    .site-footer {
      display: grid;
      gap: 16px
    }

    .btn {
      width: 100%
    }
  }

  @media(prefers-reduced-motion:reduce) {
    * {
      scroll-behavior: auto !important;
      transition: none !important;
      animation: none !important
    }
  }


  /* === COVER-STYLE PROCESS STORY — rebuild 2026-07 === */
  .cover-process {
    position: relative;
    height: 560vh;
    padding: 0;
    background: #F5F1E8;
    color: var(--text);
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    overflow: clip;
    scroll-margin-top: calc(var(--header-h) + 24px);
  }

  .cover-process__sticky {
    position: sticky;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    display: grid;
    place-items: center;
    padding: clamp(32px, 4vh, 64px) clamp(24px, 3vw, 48px) clamp(48px, 6vh, 96px);
  }

  .cover-process__shell {
    width: min(100%, 1560px);
    height: 100%;
    max-height: 660px;
    display: grid;
    grid-template-columns: minmax(420px, .98fr) minmax(0, 1.02fr);
    gap: clamp(18px, 1.8vw, 28px);
  }

  .cover-process__menu,
  .cover-process__stage {
    min-width: 0;
    border-radius: 32px;
    overflow: hidden;
    min-height: 0;
  }

  .cover-process__menu {
    background: #242424;
    color: #fff;
    padding: clamp(24px, 3vh, 44px) clamp(32px, 4vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
  }

  .cover-process .section-eyebrow {
    color: var(--copper);
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: 0.15em;
    font-weight: 600;
  }

  .cover-process__menu h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(54px, 6.2vw, 104px);
    line-height: .9;
    letter-spacing: -.058em;
    max-width: 640px;
    color: #fff;
  }

  .cover-process__menu>p:not(.section-eyebrow) {
    margin: clamp(24px, 4vh, 44px) 0 0;
    max-width: 520px;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.58;
  }

  .cover-process__rule {
    height: 1px;
    background: rgba(255, 255, 255, .14);
    margin: clamp(24px, 4vh, 44px) 0 24px;
    overflow: hidden
  }

  .cover-process__rule span {
    display: block;
    height: 100%;
    width: var(--process-progress, 0%);
    background: var(--copper);
    transition: width var(--premium)
  }

  .cover-process__steps {
    display: grid;
    gap: 4px;
  }

  .cover-process__step {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    padding: 12px 14px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, .45);
    text-align: left;
    cursor: pointer;
    transition: color var(--ease), background var(--ease), transform var(--ease), opacity var(--ease);
  }

  .cover-process__step:hover {
    color: rgba(255, 255, 255, .85)
  }

  .cover-process__step.is-active {
    background: rgba(255, 255, 255, .07);
    color: #fff;
    transform: translateX(6px)
  }

  .cover-process__step span {
    display: none;
  }

  .cover-process__step strong {
    font-size: 32px;
    line-height: 1.1;
    color: currentColor;
    padding-top: 1px;
    display: block;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
  }

  .cover-process__step em {
    display: none;
  }

  .cover-process__stage {
    position: relative;
    background: #efefed;
    box-shadow: 0 24px 80px rgba(25, 56, 47, .12);
    border: 1px solid rgba(24, 32, 29, .08);
  }

  .cover-process__topbar {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    pointer-events: none;
  }

  .cover-process__topbar span {
    color: rgba(24, 32, 29, .46);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .cover-process__topbar nav {
    display: flex;
    gap: 10px;
    pointer-events: auto
  }

  .cover-process__topbar a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    border-radius: 12px;
    background: rgba(24, 32, 29, .10);
    color: rgba(24, 32, 29, .82);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: background var(--ease), transform var(--ease), color var(--ease);
  }

  .cover-process__topbar a:hover {
    background: rgba(24, 32, 29, .18);
    transform: translateY(-2px)
  }

  .cover-process__topbar a:last-child {
    background: #77776c;
    color: #fff
  }

  .cover-process__panels {
    position: absolute;
    inset: 0
  }

  .cover-process__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(.985);
    transition: opacity 560ms ease, transform 560ms cubic-bezier(.22, 1, .36, 1);
  }

  .cover-process__panel.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1)
  }

  .cover-process__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: saturate(1.25) brightness(1.08) contrast(1.02);
  }

  .cover-process__media--contain {
    object-fit: contain;
    padding: 120px 80px 120px;
    background: radial-gradient(circle at 50% 50%, rgba(185, 115, 61, .12), transparent 38%), #f2f0ec
  }

  .cover-process__visual-overlay {
    display: none;
  }

  .cover-process__floating-card {
    position: absolute;
    left: clamp(34px, 5vw, 84px);
    bottom: clamp(36px, 6vw, 92px);
    width: min(520px, calc(100% - 72px));
    padding: clamp(22px, 2.4vw, 34px);
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(24, 32, 29, .10);
    box-shadow: 0 26px 70px rgba(25, 56, 47, .16);
    backdrop-filter: blur(18px);
  }

  .cover-process__floating-card small {
    display: block;
    margin-bottom: 12px;
    color: var(--copper);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .cover-process__floating-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1;
    letter-spacing: -.035em;
    color: var(--text);
  }

  .cover-process__floating-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    max-width: 440px
  }

  .cover-process__floating-card span:last-child {
    display: inline-flex;
    margin-top: 18px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(25, 56, 47, .07);
    color: var(--bg-deep);
    font-size: 12px;
    font-weight: 800;
  }

  .cover-process__round-arrow {
    position: absolute;
    right: clamp(60px, 8vw, 130px);
    top: 50%;
    translate: 0 -50%;
    width: clamp(88px, 9vw, 142px);
    height: clamp(88px, 9vw, 142px);
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(92, 92, 82, .88);
    color: #fff;
    font-size: clamp(44px, 5vw, 68px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
  }

  .cover-process__mobile {
    display: none
  }

  @media(max-width:1250px) {
    .cover-process__shell {
      grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr)
    }

    .cover-process__menu {
      padding: 44px
    }

    .cover-process__menu h2 {
      font-size: clamp(48px, 5.6vw, 82px)
    }

    .cover-process__topbar nav a {
      padding: 0 16px;
      min-height: 44px
    }

    .cover-process__floating-card {
      width: min(460px, calc(100% - 48px));
      left: 28px;
      bottom: 28px
    }
  }

  @media(max-width:991px) {
    .cover-process {
      height: auto;
      width: auto;
      margin: 0;
      padding: 72px 0;
      background: var(--bg-main);
      overflow: visible;
      color: var(--text)
    }

    .cover-process__sticky {
      display: none
    }

    .cover-process__mobile {
      display: block;
      width: min(100% - 32px, 900px);
      margin: 0 auto
    }

    .cover-process__mobile .section-head {
      width: 100%;
      text-align: left;
      margin-bottom: 30px
    }

    .cover-process__mobile-card {
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #fff;
      padding: 22px;
      margin-bottom: 12px;
      box-shadow: 0 14px 42px rgba(25, 56, 47, .06)
    }

    .cover-process__mobile-card span {
      display: none;
    }

    .cover-process__mobile-card h3 {
      font-family: var(--font-heading);
      font-size: 40px;
      margin: 0 0 8px;
      line-height: 1.05
    }

    .cover-process__mobile-card p {
      margin: 0;
      color: var(--muted)
    }
  }

  @media(prefers-reduced-motion:reduce) {

    .cover-process__panel,
    .cover-process__step,
    .cover-process__rule span {
      transition: none !important
    }
  }


  /* === COVER STYLE FACADE FEATURES === */
  .cover-features {
    background: var(--bg-main, #f5f1e8);
    padding: clamp(72px, 9vw, 132px) clamp(18px, 2.4vw, 34px);
    color: var(--text-primary, #18201D);
    scroll-margin-top: calc(var(--header-h, 80px) + 24px);
  }

  .cover-features__head {
    width: min(100%, 1500px);
    margin: 0 auto 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
  }

  .cover-features__head h2 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(42px, 5.6vw, 78px);
    line-height: .96;
    letter-spacing: -.045em;
    color: var(--text-primary, #18201D);
  }

  .cover-features__head p:not(.section-eyebrow) {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--text-secondary, #66706A);
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.55;
  }

  .cover-features__tabs {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 8px;
  }

  .cover-features__tab {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 0;
    border-radius: 12px;
    background: rgba(24, 32, 29, .12);
    color: var(--text-primary, #18201D);
    font: inherit;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
    transition: transform .28s ease, background-color .28s ease, color .28s ease;
  }

  .cover-features__tab:hover,
  .cover-features__tab:focus-visible,
  .cover-features__tab.is-active {
    background: rgba(24, 32, 29, .18);
    transform: translateY(-2px);
  }

  .cover-features__tab--dark {
    background: #797b70;
    color: #fff;
  }

  .cover-features__tab--dark:hover,
  .cover-features__tab--dark:focus-visible {
    background: var(--brand-green, #19382F);
    color: #fff;
  }

  .cover-features__frame {
    width: min(100%, 1500px);
    height: min(74vh, 720px);
    min-height: 540px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .cover-feature-card {
    position: relative;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 28px;
    background: #ddd;
    padding: 0;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 24px 70px rgba(25, 56, 47, .12);
    transition: transform .46s cubic-bezier(.22, 1, .36, 1), filter .46s cubic-bezier(.22, 1, .36, 1), opacity .46s cubic-bezier(.22, 1, .36, 1);
  }

  .cover-features__frame:has(.cover-feature-card.is-active) .cover-feature-card:not(.is-active) {
    opacity: .82;
    filter: saturate(.86) contrast(.96);
  }

  .cover-feature-card:hover,
  .cover-feature-card:focus-visible,
  .cover-feature-card.is-active {
    transform: translateY(-4px);
  }

  .cover-feature-card:focus-visible {
    outline: 3px solid var(--brand-copper, #B9733D);
    outline-offset: 5px;
  }

  .cover-feature-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
  }

  .cover-feature-card:hover img,
  .cover-feature-card.is-active img {
    transform: scale(1.065);
  }

  .cover-feature-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, .08) 42%, rgba(0, 0, 0, 0) 64%);
    pointer-events: none;
  }

  .cover-feature-card__caption {
    position: absolute;
    left: clamp(20px, 2.5vw, 38px);
    bottom: clamp(20px, 2.6vw, 38px);
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 7px;
    max-width: min(430px, calc(100% - 120px));
    text-shadow: 0 2px 20px rgba(0, 0, 0, .32);
  }

  .cover-feature-card__caption small {
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .84;
  }

  .cover-feature-card__caption strong {
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: .96;
    letter-spacing: -.035em;
  }

  .cover-feature-card__caption em {
    font-style: normal;
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.35;
    opacity: .88;
  }

  .cover-feature-card__arrow {
    position: absolute;
    right: clamp(22px, 2.8vw, 44px);
    bottom: clamp(22px, 2.8vw, 44px);
    z-index: 2;
    width: clamp(72px, 7vw, 116px);
    height: clamp(72px, 7vw, 116px);
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(121, 123, 112, .88);
    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    transition: transform .36s ease, background-color .36s ease;
  }

  .cover-feature-card:hover .cover-feature-card__arrow,
  .cover-feature-card.is-active .cover-feature-card__arrow {
    background: var(--brand-copper, #B9733D);
    transform: translateX(6px);
  }

  .cover-features__mobile-actions {
    display: none;
  }

  @media (hover:hover) and (min-width: 901px) {
    .cover-features__frame[data-active-feature="0"] {
      grid-template-columns: 1.18fr .82fr;
    }

    .cover-features__frame[data-active-feature="1"] {
      grid-template-columns: .82fr 1.18fr;
    }

    .cover-features__frame {
      transition: grid-template-columns .6s cubic-bezier(.22, 1, .36, 1);
    }
  }

  @media (max-width: 900px) {
    .cover-features {
      padding: 72px 16px;
    }

    .cover-features__head {
      grid-template-columns: 1fr;
    }

    .cover-features__tabs {
      justify-content: flex-start;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 6px;
    }

    .cover-features__tab {
      flex: 0 0 auto;
      min-height: 48px;
      padding: 0 18px;
    }

    .cover-features__frame {
      height: auto;
      min-height: 0;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .cover-feature-card {
      height: clamp(330px, 72vw, 520px);
      border-radius: 22px;
    }

    .cover-feature-card__arrow {
      width: 66px;
      height: 66px;
      font-size: 34px;
    }

    .cover-features__mobile-actions {
      width: min(100%, 1500px);
      margin: 16px auto 0;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cover-features__mobile-actions a {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      padding: 0 18px;
      border: 1px solid rgba(24, 32, 29, .14);
      border-radius: 999px;
      color: var(--brand-green, #19382F);
      text-decoration: none;
      font-weight: 750;
      background: rgba(255, 255, 255, .58);
    }
  }

  @media (max-width: 560px) {
    .cover-features__head h2 {
      font-size: clamp(38px, 12vw, 54px);
    }

    .cover-feature-card__caption {
      left: 20px;
      right: 20px;
      bottom: 20px;
      max-width: calc(100% - 100px);
    }

    .cover-feature-card__caption strong {
      font-size: 30px;
    }
  }

  @media (prefers-reduced-motion: reduce) {

    .cover-features__frame,
    .cover-feature-card,
    .cover-feature-card img,
    .cover-feature-card__arrow,
    .cover-features__tab {
      transition: none !important;
    }
  }

  /* === requested refinements: hero alignment, removed meta/filter UI, animated stats === */
  .hero-inner {
    width: min(100% - 72px, 1500px);
    max-width: 1500px;
    margin: 0 auto;
    justify-self: stretch;
    transform: translateY(-2vh);
  }

  .hero-kicker {
    display: none;
  }

  .hero h1 {
    font-size: clamp(22px, 3.8vw, 48px);
    font-weight: 400;
    max-width: 100%;
    white-space: nowrap;
  }

  .catalog .section-head h2 {
    font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 768px) {
    .catalog .section-head h2 {
      font-size: clamp(24px, 6vw, 36px);
    }
  }

  .guide-card__tag,
  .project-guide__hint {
    display: none !important;
  }

  .hero h1 strong {
    font-family: var(--font-text);
    font-weight: 800;
  }

  .hero p:not(.hero-kicker) {
    max-width: 820px;
  }

  .hero .btn-hero {
    margin-top: 2px;
  }

  .hero-meta,
  .filter-bar {
    display: none !important;
  }

  .trust-item strong[data-count],
  .trust-item strong.trust-static {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    will-change: transform, opacity;
  }

  .trust-item strong[data-count] {
    transform: translateY(10px);
    opacity: .08;
    transition: opacity 420ms ease, transform 520ms cubic-bezier(.22, 1, .36, 1);
  }

  .trust-item strong[data-count].is-counted {
    transform: translateY(0);
    opacity: 1;
  }

  .trust-item strong.trust-static {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 520ms ease 240ms, transform 520ms cubic-bezier(.22, 1, .36, 1) 240ms;
  }

  .trust-strip.is-visible .trust-item strong.trust-static {
    opacity: 1;
    transform: translateY(0);
  }

  @media(max-width:991px) {
    .hero-inner {
      width: min(100% - 32px, 1500px)
    }
  }

  /* === update: clean catalog marks + facade comparison slider === */
  .card-badge,
  .card-head strong {
    display: none !important;
  }

  .card-head {
    align-items: flex-start;
  }

  .card-head h3 {
    margin-right: 0;
  }

  .facade-compare {
    background: var(--bg-main, #F5F1E8);
    padding: clamp(82px, 9vw, 140px) clamp(18px, 2.5vw, 34px);
    color: var(--text-primary, #18201D);
    scroll-margin-top: calc(var(--header-h, 80px) + 24px);
  }

  .facade-compare__container {
    width: min(100%, 1500px);
    margin: 0 auto;
  }

  .facade-compare__head {
    max-width: 920px;
    margin: 0 0 clamp(28px, 4vw, 52px);
  }

  .facade-compare__head h2 {
    margin: 0;
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(44px, 5.8vw, 82px);
    line-height: .94;
    letter-spacing: -.045em;
    color: var(--text-primary, #18201D);
    text-wrap: balance;
  }

  .facade-compare__head p:not(.section-eyebrow) {
    max-width: 740px;
    margin: 20px 0 0;
    color: var(--text-secondary, #66706A);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.55;
  }

  .facade-compare__stage {
    position: relative;
    border-radius: clamp(24px, 2.6vw, 40px);
    overflow: hidden;
    background: #E8DFD0;
    border: 1px solid rgba(24, 32, 29, .12);
    box-shadow: 0 34px 86px rgba(25, 56, 47, .12);
    isolation: isolate;
  }

  .facade-compare__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8.25;
    min-height: 520px;
    overflow: hidden;
    cursor: ew-resize;
    touch-action: none;
    user-select: none;
  }

  .facade-compare__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
  }

  .facade-compare__before {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: var(--compare-x, 50%);
    overflow: hidden;
    will-change: width;
  }

  .facade-compare__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-x, 50%);
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
    display: grid;
    place-items: center;
  }

  .facade-compare__line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 0 34px rgba(0, 0, 0, .22), 0 0 0 1px rgba(25, 56, 47, .08);
  }

  .facade-compare__knob {
    position: relative;
    z-index: 2;
    width: clamp(62px, 5.5vw, 88px);
    height: clamp(62px, 5.5vw, 88px);
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .92);
    color: var(--brand-green, #19382F);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .20);
    border: 1px solid rgba(24, 32, 29, .12);
  }

  .facade-compare__range {
    position: absolute;
    inset: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
  }

  .facade-compare__labels {
    position: absolute;
    left: clamp(18px, 2.5vw, 34px);
    right: clamp(18px, 2.5vw, 34px);
    bottom: clamp(18px, 2.5vw, 34px);
    z-index: 6;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    pointer-events: none;
  }

  .facade-compare__labels span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(13, 18, 16, .48);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .28);
  }

  .facade-compare__hint {
    margin: 18px 0 0;
    color: var(--text-secondary, #66706A);
    font-size: 14px;
    text-align: center;
  }

  .facade-compare__stage.is-dragging .facade-compare__knob,
  .facade-compare__stage:hover .facade-compare__knob {
    background: var(--brand-copper, #B9733D);
    color: #fff;
    transform: scale(1.03);
  }

  @media (max-width: 900px) {
    .facade-compare {
      padding: 72px 16px;
    }

    .facade-compare__media {
      aspect-ratio: 4 / 5;
      min-height: 0;
    }

    .facade-compare__head h2 {
      font-size: clamp(38px, 12vw, 56px);
    }

    .facade-compare__labels {
      top: 16px;
      bottom: auto;
      align-items: flex-start;
    }

    .facade-compare__labels span {
      min-height: 34px;
      padding: 0 12px;
      font-size: 10px;
    }
  }

  @media (prefers-reduced-motion: reduce) {

    .facade-compare__knob,
    .facade-compare__before,
    .facade-compare__handle {
      transition: none !important;
    }
  }

  .facade-compare__range {
    pointer-events: none;
  }

  /* === update: catalog image scale + framed previews === */
  .catalog-card .card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 18px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(245, 241, 232, .92)),
      var(--bg-soft, #FBF8F2);
    border-bottom: 1px solid var(--line, rgba(24, 32, 29, .12));
  }

  .catalog-card .card-media::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(24, 32, 29, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .68);
    pointer-events: none;
    z-index: 0;
  }

  .catalog-card .card-media img {
    position: relative;
    z-index: 1;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    object-fit: contain;
    object-position: center center;
    border-radius: 18px;
    filter: drop-shadow(0 14px 24px rgba(25, 56, 47, .12));
    transform: none !important;
  }

  .catalog-card:hover .card-media img {
    transform: none !important;
  }

  .catalog-card .render-label,
  .catalog-card .card-badge {
    display: none !important;
  }

  @media (max-width: 768px) {
    .catalog-card .card-media {
      aspect-ratio: 4 / 3;
      padding: 14px;
    }

    .catalog-card .card-media::before {
      inset: 14px;
      border-radius: 18px;
    }

    .catalog-card .card-media img {
      width: calc(100% - 12px);
      height: calc(100% - 12px);
    }
  }


  /* === Cover-style media reveal block === */
  .module-mediaReveal {
    background: var(--bg-main, #F5F1E8);
    padding: clamp(80px, 9vw, 140px) 0;
    color: var(--text-primary, #18201D);
    scroll-margin-top: calc(var(--header-h, 80px) + 24px);
  }

  .module-mediaReveal-inner {
    width: min(100% - 48px, 1560px);
    margin: 0 auto;
  }

  .module-mediaReveal-content {
    --reveal-split: 65.473146%;
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    height: clamp(520px, 48vw, 760px);
    overflow: hidden;
    border-radius: clamp(32px, 2.6vw, 40px);
    background: var(--bg-main, #F5F1E8);
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
    box-shadow: 0 36px 90px rgba(25, 56, 47, .12);
    isolation: isolate;
  }

  .module-mediaReveal-item {
    position: relative;
    flex: 0 0 var(--width, 50%);
    width: var(--width, 50%);
    height: 100%;
    min-width: 0;
    overflow: hidden;
    background: #ddd;
    transition:
      filter .45s cubic-bezier(.22, 1, .36, 1),
      opacity .45s cubic-bezier(.22, 1, .36, 1);
  }

  .module-mediaReveal-item[data-index="0"] {
    --width: 65.473146%;
  }

  .module-mediaReveal-item[data-index="1"] {
    --width: 34.526854%;
  }

  .module-mediaReveal-item .media,
  .module-mediaReveal-item .media img {
    width: 100%;
    height: 100%;
  }

  .module-mediaReveal-item .media {
    position: absolute;
    inset: 0;
  }

  .module-mediaReveal-item .media img {
    display: block;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    user-select: none;
    transform: scale(1.01);
    transition:
      transform .6s cubic-bezier(.22, 1, .36, 1),
      filter .45s cubic-bezier(.22, 1, .36, 1);
  }

  .module-mediaReveal-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(to top, rgba(0, 0, 0, .52), rgba(0, 0, 0, .10) 48%, transparent 76%);
  }

  .module-mediaReveal-item.is-inactive {
    filter: brightness(.82) saturate(.86);
  }

  .module-mediaReveal-item.is-active {
    filter: brightness(1) saturate(1);
  }

  .module-mediaReveal-item.is-active .media img {
    transform: scale(1.025);
  }

  .module-mediaReveal-item .title {
    position: absolute;
    left: clamp(24px, 3vw, 56px);
    bottom: clamp(24px, 3vw, 56px);
    z-index: 3;
    max-width: min(520px, 80%);
    color: #FFFFFF;
    font-family: var(--font-text, sans-serif);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 22px rgba(0, 0, 0, .32);
    transition:
      opacity .35s ease,
      transform .35s ease;
    pointer-events: none;
  }

  .module-mediaReveal-item.is-inactive .title {
    opacity: .72;
    transform: translateY(8px);
  }

  .module-mediaReveal-handle {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    left: var(--reveal-split, 65.473146%);
    width: 12px;
    transform: translateX(-50%);
    background: var(--bg-main, #F5F1E8);
    pointer-events: none;
    transition: none;
  }

  .module-mediaReveal-handle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-main, #F5F1E8);
  }

  @media (max-width: 900px) {
    .module-mediaReveal {
      padding: 72px 0;
    }

    .module-mediaReveal-inner {
      width: min(100% - 32px, 1560px);
    }

    .module-mediaReveal-content {
      display: grid;
      height: auto;
      gap: 14px;
      overflow: visible;
      border-radius: 0;
      cursor: default;
      touch-action: auto;
      box-shadow: none;
      background: transparent;
    }

    .module-mediaReveal-item,
    .module-mediaReveal-item[data-index="0"],
    .module-mediaReveal-item[data-index="1"] {
      width: 100% !important;
      flex-basis: auto !important;
      height: 440px;
      border-radius: 24px;
      box-shadow: 0 22px 58px rgba(25, 56, 47, .10);
    }

    .module-mediaReveal-handle {
      display: none;
    }

    .module-mediaReveal-item .title {
      font-size: 20px;
    }

    .module-mediaReveal-item.is-inactive {
      filter: none;
    }
  }

  @media (max-width: 560px) {

    .module-mediaReveal-item,
    .module-mediaReveal-item[data-index="0"],
    .module-mediaReveal-item[data-index="1"] {
      height: 320px;
    }
  }

  @media (prefers-reduced-motion: reduce) {

    .module-mediaReveal-item,
    .module-mediaReveal-item .media img,
    .module-mediaReveal-item .title {
      transition: none !important;
    }
  }




  /* === final update: clean guide expanded content + bright flush catalog images === */
  .guide-card__label,
  .guide-card .guide-card__chips,
  .guide-card__link {
    display: none !important;
  }

  .guide-card__details {
    margin-top: 0;
  }

  .guide-card.is-active .guide-card__details {
    margin-top: 18px;
  }

  .catalog-card .card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 0 !important;
    display: block;
    overflow: hidden;
    background: #f4efe6;
    border-bottom: 1px solid var(--line, rgba(24, 32, 29, .12));
  }

  .catalog-card .card-media::before {
    display: none !important;
    content: none !important;
  }

  .catalog-card .card-media img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 0 !important;
    filter: brightness(1.13) contrast(1.06) saturate(1.16) !important;
    transform: none !important;
    transition: filter 280ms ease !important;
  }

  .catalog-card:hover .card-media img {
    transform: none !important;
    filter: brightness(1.17) contrast(1.08) saturate(1.18) !important;
  }

  .catalog-card .render-label,
  .catalog-card .card-badge,
  .catalog-card .card-head strong {
    display: none !important;
  }

  @media (max-width: 768px) {
    .catalog-card .card-media {
      aspect-ratio: 4 / 3;
      padding: 0 !important;
    }

    .catalog-card .card-media img {
      width: 100% !important;
      height: 100% !important;
    }
  }

  /* === Project Choice (Selection Guide) Redesign === */
  .project-choice {
    background: #F5F1E8;
    padding: clamp(96px, 10vw, 160px) 0;
    width: 100%;
    color: #18201D;
  }

  .project-choice__container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .project-choice__header {
    margin-bottom: clamp(48px, 6vw, 80px);
    max-width: 1560px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }

  @media (max-width: 991px) {
    .project-choice__header {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

  .project-choice__header .section-eyebrow {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted, #666);
  }

  .project-choice__header h2 {
    font-family: var(--font-text, sans-serif);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 0;
    font-weight: 300;
  }

  .project-choice__header h2 strong {
    font-weight: 600;
  }

  .project-choice__header p {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: #4A5550;
  }

  .project-choice__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2vw, 28px);
  }

  .choice-card {
    position: relative;
    min-height: clamp(430px, 35vw, 520px);
    border-radius: clamp(32px, 3vw, 44px);
    overflow: hidden;
    background: #EBE6DC;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 32px rgba(24, 32, 29, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
    cursor: pointer;
    padding: 0;
    text-align: left;
  }

  .choice-card:focus-visible {
    outline: 3px solid var(--copper, #B9733D);
    outline-offset: 4px;
  }

  .choice-card:not(.is-open) {
    filter: brightness(0.9) saturate(0.95);
  }

  .choice-card:not(.is-open):hover {
    filter: brightness(0.96) saturate(1);
  }

  .choice-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .choice-card.is-open .choice-card__image {
    transform: scale(1.03);
    filter: brightness(0.95);
  }

  .choice-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
    transition: backdrop-filter 0.5s ease, background 0.5s ease;
  }

  .choice-card.is-open .choice-card__overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .choice-card__content {
    position: relative;
    z-index: 2;
    padding: clamp(24px, 3vw, 40px);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
  }

  .choice-card__body h3 {
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: -0.01em;
  }

  .choice-card__short {
    font-size: clamp(16px, 1.2vw, 18px);
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: 0;
    transition: margin 0.4s ease;
  }

  .choice-card.is-open .choice-card__short {
    margin-bottom: 20px;
  }

  .choice-card__details {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, margin 0.4s ease;
  }

  .choice-card.is-open .choice-card__details {
    grid-template-rows: 1fr;
    opacity: 1;
  }

  .choice-card__details-inner {
    overflow: hidden;
  }

  .choice-card__details p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
  }

  .choice-card__accent {
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--copper, #B9733D) !important;
    margin-bottom: 0 !important;
    font-weight: 600;
  }

  @media (max-width: 900px) {
    .project-choice__grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .choice-card {
      min-height: clamp(360px, 60vw, 460px);
      border-radius: 28px;
    }
  }

  /* --- NEW TECH SHOWCASE --- */
  .tech-showcase {
    padding: clamp(72px, 8vw, 120px) 0;
    background: #F6F1E8;
  }

  .tech-showcase__container {
    width: min(100% - 32px, 1440px);
    margin: 0 auto;
    background: #FBF8F1;
    border-radius: 40px;
    padding: clamp(48px, 6vw, 84px) clamp(24px, 4vw, 64px);
    display: flex;
    flex-direction: column;
  }

  .tech-showcase__header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tech-showcase__subtitle {
    max-width: 700px;
    font-size: clamp(16px, 1.8vw, 18px);
    color: #6F746D;
    line-height: 1.5;
    margin: 20px auto 0;
  }

  /* Interactive SIP Component */
  .sip-interactive {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .sip-interactive__stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sip-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: floatPanel 8s ease-in-out infinite;
  }

  .sip-visual img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    position: relative;
    z-index: 1;
  }

  .sip-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(185, 115, 61, 0.12), transparent 60%);
    z-index: 0;
    pointer-events: none;
  }

  @keyframes floatPanel {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  /* Hotspots */
  .sip-hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 2px solid #B9733D;
    border-radius: 50%;
    z-index: 3;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 12px rgba(185, 115, 61, 0.3);
    transition: all 0.3s ease;
    padding: 0;
  }

  .sip-hotspot::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 1px solid rgba(185, 115, 61, 0.5);
    animation: pulseHotspot 2s infinite;
  }

  .sip-hotspot.is-active,
  .sip-hotspot:hover {
    background: #B9733D;
    transform: translate(-50%, -50%) scale(1.2);
  }

  @keyframes pulseHotspot {
    0% {
      transform: scale(0.8);
      opacity: 1;
    }

    100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }

  /* Hotspot Coordinates (Approximate based on panel layers) */
  .sip-hotspot--1 {
    top: 25%;
    left: 35%;
  }

  .sip-hotspot--2 {
    top: 50%;
    left: 55%;
  }

  .sip-hotspot--3 {
    top: 75%;
    left: 70%;
  }

  .sip-hotspot--4 {
    top: 85%;
    left: 35%;
  }

  /* Info Column */
  .sip-interactive__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .sip-tabs {
    display: flex;
    gap: 12px;
  }

  .sip-tab {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(24, 32, 29, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    font-family: var(--font-heading, Georgia, serif);
    font-size: 14px;
    color: #6F746D;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sip-tab:hover {
    background: rgba(255, 255, 255, 0.8);
  }

  .sip-tab.is-active {
    background: #B9733D;
    color: #fff;
    border-color: #B9733D;
  }

  .sip-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(24, 32, 29, 0.08);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(24, 32, 29, 0.05);
    transition: opacity 0.3s ease;
  }

  .sip-card.is-updating {
    opacity: 0;
  }

  .sip-card__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #B9733D;
    margin-bottom: 16px;
  }

  .sip-card__title {
    font-family: var(--font-text, sans-serif);
    font-size: 28px;
    font-weight: 600;
    color: #18201D;
    margin: 0 0 16px;
    line-height: 1.15;
  }

  .sip-card__desc {
    font-size: 16px;
    color: #6F746D;
    line-height: 1.5;
    margin: 0;
  }

  @media (min-width: 992px) {
    .trust-grid {
      grid-template-columns: repeat(3, 1fr) !important;
    }
  }

  @media (max-width: 1024px) {
    .sip-interactive {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .sip-interactive__info {
      align-items: center;
      text-align: center;
    }

    .sip-tabs {
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .tech-showcase__interactive {
      grid-template-columns: 1fr;
    }

    .tech-showcase__container {
      border-radius: 28px;
      padding: clamp(32px, 5vw, 48px) 20px;
    }

    .tech-showcase__visual img {
      max-width: 85%;
      margin: 0 auto;
    }
  }

  /* Showcase Photo Block */
  .showcase-photo {
    padding: clamp(40px, 6vw, 80px) 24px;
    background: #F5F1E8;
  }

  .showcase-photo__inner {
    position: relative;
    max-width: min(100%, 1200px);
    margin: 0 auto;
    border-radius: clamp(24px, 4vw, 60px);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(24, 32, 29, 0.1);
  }

  .showcase-photo__inner img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }

  .showcase-photo__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    padding-bottom: 0;
  }

  .showcase-photo__overlay h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: -0.02em;
    text-transform: none;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    margin: 0;
    padding: 0 20px;
    font-weight: 500;
    line-height: 1.1;
  }

  /* Premium Footer */
  .site-footer {
    background: #0b211c;
    color: #fff;
    padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  }

  .footer-inner {
    width: min(100%, 1500px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .footer-col--brand .logo {
    font-family: var(--font-heading, Georgia, serif);
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 24px;
    display: block;
  }

  .footer-col--brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }

  .footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-nav a,
  .footer-social a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover,
  .footer-social a:hover {
    color: #B9733D;
  }

  .footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
  }

  @media (max-width: 991px) {
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 48px;
      text-align: center;
    }

    .footer-nav {
      flex-direction: column;
      gap: 20px;
    }

    .footer-social {
      justify-content: center;
    }
  }

  /* Custom Editorial Font */
  .hero h1,
  .catalog .section-head h2,
  .inter-slogan h2,
  .project-choice__header h2,
  .project-choice__header p,
  .project-choice__details h2,
  .tech-showcase__header h2 {
    font-family: 'Editorial New', serif !important;
    font-weight: 400;
  }

  .font-neue {
    font-family: 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  }

  /* Slogans Uniformity */
  .catalog .section-head h2,
  .inter-slogan h2,
  .tech-showcase__header h2 {
    font-size: clamp(24px, 3vw, 42px) !important;
    text-align: center !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.1 !important;
    letter-spacing: normal !important;
  }

  .project-choice__header {
    align-items: flex-start !important;
    max-width: 100% !important;
    /* Allow it to fill the container, aligning with cards */
    margin: 0 !important;
    border-top: 1px solid var(--line);
    padding-top: clamp(24px, 4vw, 48px) !important;
    /* reduced to bring line closer to text */
    padding-bottom: clamp(24px, 3vw, 40px) !important;
    /* move closer to cards */
  }

  .project-choice {
    padding-top: clamp(48px, 6vw, 80px) !important;
  }

  .project-choice__header p {
    font-size: clamp(16px, 1.9vw, 23px) !important;
    line-height: 1.5 !important;
    margin-top: 0 !important;
    color: var(--text) !important;
  }

  .project-choice__header h2 {
    font-size: clamp(24px, 3vw, 42px) !important;
    text-align: left !important;
    max-width: 1200px !important;
    line-height: 1.1 !important;
    margin: 0 0 0 clamp(8px, 1vw, 24px) !important;
    /* reduced shift */
  }

  .catalog .section-head,
  .tech-showcase__header {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 0 !important;
    margin-bottom: clamp(64px, 8vw, 120px) !important;
  }

  .catalog {
    padding-bottom: clamp(40px, 5vw, 64px) !important;
  }

  /* Universal tight spacing between all blocks */
  .project-guide,
  .catalog,
  .packages,
  .included,
  .faq,
  .sip-showcase,
  .module-mediaReveal,
  .project-choice {
    padding-top: clamp(48px, 6vw, 80px) !important;
    padding-bottom: clamp(48px, 6vw, 80px) !important;
  }

  .inter-slogan {
    padding-top: clamp(48px, 6vw, 80px) !important;
    padding-bottom: clamp(48px, 6vw, 80px) !important;
  }
/* === SIP MODULE === */
.sip-module {
  padding: clamp(64px, 10vw, 120px) 20px;
  background-color: var(--color-background, #F6F4F0);
}

.sip-module__container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #F8F7F3;
  border-radius: 32px;
  padding: clamp(40px, 6vw, 80px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
}

.sip-module__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.sip-module__visual {
  position: relative;
  width: 100%;
}

.sip-module__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.sip-module__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* Callouts */
.sip-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.callout-dot {
  width: 8px;
  height: 8px;
  background-color: #1a3b2b;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 4px rgba(26,59,43,0.1);
}

.callout-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  width: 60px;
  height: 1px;
  background-color: #e2dfd5;
}

.callout-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.callout-text strong {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
}

.callout-text span {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  max-width: 200px;
}

/* Callout Positioning (Approximations for the 3/4 view) */
.callout-1 { top: 15%; left: -5%; }
.callout-2 { top: 32%; left: -2%; }
.callout-3 { top: 50%; left: 0%; }
.callout-4 { top: 68%; left: 2%; }
.callout-5 { top: 85%; left: 5%; }

/* Right Content */
.sip-module__content {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 64px);
}

.sip-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sip-tab {
  background: #fff;
  border: 1px solid #e2dfd5;
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.sip-tab:hover {
  border-color: #d4a373;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.sip-tab.active {
  background: #1a3b2b;
  border-color: #1a3b2b;
  color: #fff;
}

.sip-tab__num {
  font-family: var(--font-heading, 'Georgia', serif);
  font-size: 0.9rem;
  color: #d4a373;
}

.sip-tab__line {
  width: 24px;
  height: 1px;
  background-color: #e2dfd5;
}
.sip-tab.active .sip-tab__line { background-color: rgba(255,255,255,0.2); }

.sip-tab__title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  flex-grow: 1;
}
.sip-tab:not(.active) .sip-tab__title { color: #111; }

.sip-tab__arrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #999;
  align-self: flex-end;
}
.sip-tab.active .sip-tab__arrow { color: rgba(255,255,255,0.5); }

.sip-feature-panel {
  background: #fff;
  border-radius: 24px;
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border: 1px solid #f0ede6;
}

.sip-feature-panel__label {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4a373;
  display: block;
  margin-bottom: 24px;
  font-weight: 600;
}

.sip-feature-panel__title {
  font-family: var(--font-heading, 'Georgia', serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #111;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.sip-feature-panel__desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 85%;
}

.sip-feature-panel__desc p {
  margin-bottom: 16px;
}
.sip-feature-panel__desc p:last-child {
  margin-bottom: 0;
}

.sip-feature-panel__icon {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  color: #d4a373;
  opacity: 0.2;
}

/* Divider & Benefits */
.sip-module__divider {
  width: 100%;
  height: 1px;
  background-color: #e2dfd5;
  margin: clamp(48px, 6vw, 80px) 0;
}

.sip-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sip-benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sip-benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.sip-benefit__icon.bg-green { background-color: #1a3b2b; }
.sip-benefit__icon.bg-ochre { background-color: #d4a373; }

.sip-benefit__icon svg {
  width: 24px;
  height: 24px;
}

.sip-benefit__text h4 {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 8px;
}

.sip-benefit__text p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

/* Responsive */
@media (max-width: 1100px) {
  .sip-module__grid { grid-template-columns: 1fr; }
  .sip-module__visual { max-width: 600px; margin: 0 auto; }
  .callout-dot::before { width: 30px; }
}

@media (max-width: 768px) {
  .sip-tabs { grid-template-columns: repeat(2, 1fr); }
  .sip-benefits { grid-template-columns: 1fr; }
  .callout-text { display: none; } /* Hide text on mobile for clean look */
  .sip-feature-panel__desc { max-width: 100%; }
}


/* Minimal catalog cards */
.catalog-card .card-body p,
.catalog-card .card-body .card-specs,
.catalog-card .card-body .card-action {
  display: none !important;
}
.catalog-card .card-body {
  padding: 24px !important;
}
.catalog-card .card-head {
  margin-bottom: 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog-card .card-head h3 {
  font-size: 24px !important;
  margin: 0 !important;
}
.catalog-card .card-head strong {
  font-size: 16px !important;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .project-modal__grid {
    grid-template-columns: 1.3fr 0.7fr !important;
    align-items: center;
  }
}

.render-label { display: none !important; }


/* ==========================================================================
   SIP TECHNOLOGY MODULE (PREMIUM REDESIGN V2)
   ========================================================================== */

section[id],
#technology {
  scroll-margin-top: 120px;
}

.sip-showcase {
  padding: 80px 24px;
  background: #f7f3ea; /* Warm ivory background */
}

.sip-showcase__container {
  max-width: 1240px;
  margin: 0 auto;
}

.sip-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 40px;
}

/* LEFT: VISUAL CARD */
.sip-showcase__visual-card {
  background: #fbf8f1;
  border: 1px solid rgba(185, 115, 61, 0.22);
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 24px 70px rgba(24, 32, 29, 0.06);
  display: flex;
  position: relative;
  overflow: hidden;
}

.sip-showcase__image-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sip-showcase__image {
  width: 70%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(24, 32, 29, 0.1));
  transition: all 0.35s ease;
}

/* LAYER LABELS */
.sip-showcase__layer-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sip-showcase__layer {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  right: 20px; /* Align to the right side of the card */
  width: max-content;
}

.layer-line {
  position: absolute;
  height: 1px;
  background: rgba(185, 115, 61, 0.45);
  right: 100%;
  top: 50%;
  width: 150px; /* Default width, can adjust per layer */
  z-index: -1;
  transition: background 0.3s ease;
}

.layer-line::before {
  content: '';
  position: absolute;
  left: -4px;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b9824b; /* bronze dot */
  transition: background 0.3s ease;
}

.layer-num {
  width: 40px;
  height: 40px;
  border: 1px solid #b9824b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #b9824b;
  background: #fbf8f1;
  font-weight: 500;
}

.layer-text {
  display: flex;
  flex-direction: column;
}

.layer-text strong {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #18201D;
  line-height: 1.35;
}

.layer-text span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(24, 32, 29, 0.62);
  line-height: 1.35;
}

/* Layer specific positioning (approximate based on exploded view) */
.layer-1 { top: 12%; }
.layer-2 { top: 30%; }
.layer-3 { top: 48%; }
.layer-4 { top: 66%; }
.layer-5 { top: 84%; }
.layer-1 .layer-line { width: 120px; }
.layer-2 .layer-line { width: 180px; }
.layer-3 .layer-line { width: 220px; }
.layer-4 .layer-line { width: 180px; }
.layer-5 .layer-line { width: 120px; }


/* RIGHT: TABS */
.sip-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sip-showcase__tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sip-showcase__tab {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(36, 61, 51, 0.12);
  border-radius: 12px;
  height: 60px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.25s ease;
  flex: 1;
  min-width: 120px;
  position: relative;
}

.sip-showcase__tab .tab-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #b9824b; /* bronze */
  margin-bottom: 2px;
}

.sip-showcase__tab .tab-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #18201D;
}

.sip-showcase__tab .tab-indicator {
  position: absolute;
  bottom: 8px;
  left: 24px;
  width: 16px;
  height: 2px;
  background: #b9824b;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sip-showcase__tab:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(36, 61, 51, 0.2);
}

.sip-showcase__tab.is-active {
  background: #17382f;
  border-color: #17382f;
}

.sip-showcase__tab.is-active .tab-title {
  color: #fffaf0;
}

.sip-showcase__tab.is-active .tab-indicator {
  opacity: 1;
}

/* RIGHT: FEATURE CARD */
.sip-showcase__feature {
  background: #ffffff;
  border: 1px solid rgba(36, 61, 51, 0.10);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(24, 32, 29, 0.06);
  padding: 56px;
  min-height: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sip-showcase__feature-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #b9824b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.sip-showcase__feature-eyebrow-line {
  width: 24px;
  height: 2px;
  background: #b9824b;
  margin-top: 8px;
}

.sip-showcase__feature-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.05;
  color: #18201D;
  margin-top: 40px;
  margin-bottom: 24px;
}

.sip-showcase__feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(24, 32, 29, 0.72);
  max-width: 560px;
}

.sip-showcase__feature-icon {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 40px;
  height: 40px;
  color: #b9824b;
  opacity: 0.4;
}

/* BOTTOM: BENEFITS STRIP */
.sip-showcase__benefits {
  background: rgba(255, 252, 245, 0.80);
  border: 1px solid rgba(185, 115, 61, 0.20);
  border-radius: 28px;
  padding: 32px;
}

.benefits-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(24, 32, 29, 0.5);
  margin-bottom: 24px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.benefits-divider {
  width: 1px;
  height: 60%;
  background: rgba(185, 115, 61, 0.15);
}

.sip-showcase__benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.sip-showcase__benefit-icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 1px solid rgba(185, 115, 61, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #b9824b;
  box-shadow: 0 4px 12px rgba(185, 115, 61, 0.05);
}

.sip-showcase__benefit-icon svg {
  width: 24px;
  height: 24px;
}

.sip-showcase__benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #18201D;
  margin-bottom: 8px;
}

.sip-showcase__benefit-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(24, 32, 29, 0.62);
}


/* HIGHLIGHT LOGIC */
.sip-showcase__visual-card.is-highlight-1 .layer-1 .layer-num,
.sip-showcase__visual-card.is-highlight-1 .layer-5 .layer-num {
  background: #17382f;
  color: #fff;
  border-color: #17382f;
}
.sip-showcase__visual-card.is-highlight-1 .layer-1 .layer-line,
.sip-showcase__visual-card.is-highlight-1 .layer-5 .layer-line {
  background: rgba(23, 56, 47, 0.6);
}
.sip-showcase__visual-card.is-highlight-1 .layer-1 .layer-line::before,
.sip-showcase__visual-card.is-highlight-1 .layer-5 .layer-line::before {
  background: #17382f;
}

.sip-showcase__visual-card.is-highlight-2 .layer-3 .layer-num {
  background: #17382f;
  color: #fff;
  border-color: #17382f;
}
.sip-showcase__visual-card.is-highlight-2 .layer-3 .layer-line {
  background: rgba(23, 56, 47, 0.6);
}
.sip-showcase__visual-card.is-highlight-2 .layer-3 .layer-line::before {
  background: #17382f;
}

.sip-showcase__visual-card.is-highlight-3 .layer-2 .layer-num,
.sip-showcase__visual-card.is-highlight-3 .layer-4 .layer-num {
  background: #17382f;
  color: #fff;
  border-color: #17382f;
}
.sip-showcase__visual-card.is-highlight-3 .layer-2 .layer-line,
.sip-showcase__visual-card.is-highlight-3 .layer-4 .layer-line {
  background: rgba(23, 56, 47, 0.6);
}
.sip-showcase__visual-card.is-highlight-3 .layer-2 .layer-line::before,
.sip-showcase__visual-card.is-highlight-3 .layer-4 .layer-line::before {
  background: #17382f;
}

.sip-showcase__visual-card.is-highlight-4 .layer-num {
  background: rgba(23, 56, 47, 0.1);
  border-color: #17382f;
}


/* RESPONSIVE */
@media (max-width: 1100px) {
  .sip-showcase__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sip-showcase__image {
    width: 60%;
  }
}

@media (max-width: 860px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .benefits-divider {
    display: none;
  }
  
  .sip-showcase__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sip-showcase {
    padding: 60px 16px;
  }
  
  .sip-showcase__visual-card {
    padding: 24px;
    border-radius: 24px;
    flex-direction: column;
    align-items: center;
  }
  
  .sip-showcase__image {
    width: 80%;
    margin-bottom: 24px;
  }
  
  .sip-showcase__layer-labels {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .sip-showcase__layer {
    position: relative;
    right: auto;
    width: 100%;
  }
  
  .layer-line {
    display: none;
  }
  
  .sip-showcase__feature {
    padding: 32px 24px;
    border-radius: 24px;
  }
  
  .sip-showcase__feature-title {
    font-size: 32px;
  }
  
  .sip-showcase__feature-text {
    font-size: 16px;
  }
  
  .sip-showcase__benefit {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .project-modal__shell {
    gap: 32px;
  }
  .project-modal__image-card {
    min-height: 480px;
  }
  .project-modal__title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .project-modal, .offer-modal {
    width: calc(100% - 24px);
    padding: 24px;
    border-radius: 24px;
  }
  .project-modal__shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .project-modal__image-card {
    min-height: 380px;
    border-radius: 20px;
  }
  .project-modal__title {
    font-size: 38px;
  }
  .project-modal__description {
    font-size: 16px;
  }
  .project-modal__primary, .project-modal__secondary {
    width: 100%;
    justify-content: center;
  }
  .modal-close, .project-modal__close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Flex properties for inter-slogan buttons */
.inter-slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.inter-slogan .btn {
    pointer-events: auto; /* Just in case */
}

/* Beautiful Oval Button for Slogans */
.btn-slogan {
    background: #E85A1C;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(232, 90, 28, 0.3), 0 0 0 6px rgba(232, 90, 28, 0.15);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 0 36px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-slogan:hover {
    background: #f76625;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px rgba(232, 90, 28, 0.4), 0 0 0 8px rgba(232, 90, 28, 0.2);
    transform: translateY(-2px);
}
/* Mobile Optimization & Premium Tweaks */
@media (max-width: 768px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  .catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .hero-logo img {
    height: 48px !important;
  }
  .hero-logo span {
    font-size: 24px !important;
  }
  .btn, button, a {
    touch-action: manipulation;
  }
}

.btn {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}
.catalog-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}

/* Uniform Slogans */
.slogan-uniform {
  font-family: var(--font-heading, 'Playfair Display', serif) !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  line-height: 1.1 !important;
  margin: 0 0 24px 0 !important;
  text-align: center;
}
.slogan-uniform .slogan-normal {
  font-family: var(--font-text, 'Inter', sans-serif) !important;
  font-weight: 400 !important;
}
.slogan-uniform .slogan-bold {
  font-family: var(--font-text, 'Inter', sans-serif) !important;
  font-weight: 800 !important;
}

/* Elegant First Half */
.slogan-uniform .slogan-normal {
  font-family: var(--font-heading, 'Playfair Display', serif) !important;
  font-style: italic;
  font-weight: 400 !important;
}

/* Left align hero slogan */
.hero .slogan-uniform {
  text-align: left !important;
}

/* Oval Contact Button */
.btn-slogan-oval {
  background: var(--copper);
  color: #fff !important;
  border-radius: 50px;
  padding: 12px 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  border: none;
}
.btn-slogan-oval:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 115, 61, 0.4);
}

/* Mobile Enhancements & Unified Process Block */
@media (max-width: 991px) {
  /* Unified Process Block */
  .cover-process__mobile {
    display: none !important;
  }
  
  .cover-process__sticky {
    display: block !important;
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: auto !important;
  }
  
  .cover-process__shell {
    grid-template-columns: 1fr !important;
    height: auto !important;
    border-radius: 16px;
    margin: 16px;
  }
  
  .cover-process__menu {
    padding: 32px 24px !important;
  }
  
  .cover-process__menu h2 {
    font-size: clamp(32px, 8vw, 48px) !important;
  }
  
  .cover-process__topbar {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .cover-process__media {
    position: relative !important;
    height: 400px !important;
    width: 100% !important;
    border-radius: 0 0 16px 16px;
  }
  
  .cover-process__panel {
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .cover-process__panel.is-active {
    opacity: 1;
    z-index: 2;
  }
  
  .cover-process__floating-card {
    width: calc(100% - 32px) !important;
    left: 16px !important;
    bottom: 16px !important;
    padding: 20px !important;
  }

  /* General Mobile Tweaks */
  .hero h1 {
    font-size: clamp(36px, 10vw, 56px) !important;
  }
  .catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .trust-grid {
    grid-template-columns: 1fr !important;
  }
  .site-header .lang-switcher {
    display: flex;
    gap: 12px;
  }
}

@media (max-width: 991px) {
  .cover-process__shell {
    display: flex !important;
    flex-direction: column-reverse;
  }
}


/* ------------------------------------------------------------
   Process block mobile refinement: image above, scroll-driven steps.
   ------------------------------------------------------------ */
@media (max-width: 991px) {
  .cover-process {
    height: auto !important;
    min-height: 150svh !important;
    padding: 44px 0 80px !important;
    overflow: visible !important;
  }

  .cover-process__sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: auto !important;
  }

  .cover-process__shell {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: min(100% - 28px, 760px) !important;
  }

  /* Photo first, steps second */
  .cover-process__stage {
    order: 1 !important;
    height: clamp(360px, 78vw, 560px) !important;
    min-height: 360px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  .cover-process__menu {
    order: 2 !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  .cover-process__steps {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .cover-process__step {
    pointer-events: none !important;
    cursor: default !important;
  }

  .cover-process__step.is-active {
    color: #fff !important;
    background: rgba(255,255,255,.14) !important;
  }
}

@media (min-width: 600px) and (max-width: 991px) {
  .cover-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .cover-process__stage {
    height: clamp(320px, 82vw, 430px) !important;
    min-height: 320px !important;
  }

  .cover-process__shell {
    width: min(100% - 22px, 760px) !important;
    gap: 14px !important;
  }

  .cover-process__menu {
    padding: 14px !important;
  }
}

/* === MOBILE PROCESS SCROLL (Premium Version) === */
@media (min-width: 992px) {
  .process-mobile-scroll {
    display: none;
  }
}

@media (max-width: 991px) {
  .cover-process {
    display: none !important;
  }
  
  .process-mobile-scroll {
      position: relative;
      background: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
    color: #fffaf0;
    --process-steps-count: 7;
      height: calc(var(--process-steps-count) * 65vh);
  }

  .process-mobile-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-h) + 16px) 24px 48px;
    z-index: 2;
  }

  .process-mobile-media {
    width: 100%;
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    overflow: hidden;
    background: #e8e2d7;
    margin-bottom: 38px;
    position: relative;
  }

  .process-mobile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.45s ease, transform 0.65s ease, filter 0.45s ease;
  }
  
  .process-mobile-image.is-changing {
    opacity: 0;
    transform: scale(0.98);
  }
  
  .process-mobile-image:not(.is-changing) {
    transform: scale(1.01);
  }

  .process-mobile-steps {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
      flex: 1;
      justify-content: flex-start;
    }

    .process-mobile-step {
      font-family: var(--font-heading);
      font-size: clamp(26px, 7.5vw, 38px); /* Uniform, slightly smaller than the huge one */
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: rgba(255,255,255,0.25);
      background: none;
      border: 0;
      padding: 0;
      text-align: left;
      transition: color 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
      cursor: pointer;
    }

    .process-mobile-step.is-active {
      color: #fffaf0;
      opacity: 1;
      transform: translateX(4px);
    }

    .process-mobile-step:not(.is-active) {
      opacity: 0.35;
    }

  .process-mobile-scroll-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--process-steps-count) * 65vh);
    pointer-events: none;
    z-index: 1;
  }

  @media (prefers-reduced-motion: reduce) {
    .process-mobile-image,
    .process-mobile-step {
      transition: none !important;
    }
  }
}

/* === PREMIUM MOBILE MENU OVERLAY === */
@media (min-width: 992px) {
  .mobile-menu-btn, .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 991px) {
  /* Hide desktop header actions completely on mobile */
  .site-header .header-actions,
  .site-header .primary-nav {
    display: none !important;
  }
  
  /* The round burger button in top right */
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    margin-left: auto; /* push to right */
    padding: 0;
    transition: background 0.3s ease;
    position: relative;
    z-index: 900;
    pointer-events: auto;
  }
  
  .mobile-menu-btn:active {
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* The blurred full-screen overlay */
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(30, 30, 30, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-nav.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Top bar inside the menu */
  .mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 48px;
  }
  
  /* Left round close button */
  .mobile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .mobile-close-btn:active {
    transform: scale(0.95);
  }
  
  /* Right logo */
  .mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .mobile-nav-logo span {
    color: #fff;
    font-family: var(--font-heading, Georgia, serif);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  /* Body of the menu (links) */
  .mobile-nav-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    flex: 1;
    padding-top: 24px;
  }
  
  .mobile-nav-link {
    font-family: var(--font-heading);
    font-size: clamp(32px, 9vw, 48px);
    color: #fff;
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }
  
  .mobile-nav-link:active {
    opacity: 1;
  }
  
  .mobile-nav-contact {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 20px;
    background: #fff;
    color: #000;
    padding: 12px 36px;
    border-radius: 30px;
    opacity: 1;
    text-align: center;
    width: auto;
    display: inline-block;
    box-sizing: border-box;
  }
  
  .mobile-nav-footer {
    padding-bottom: 32px;
    display: flex;
    justify-content: flex-start;
  }
  
  .mobile-nav-footer .mobile-lang {
    display: flex;
    gap: 16px;
  }
  
  .mobile-nav-footer .mobile-lang a {
    color: #fff;
    opacity: 0.5;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .mobile-nav-footer .mobile-lang a.is-active {
    opacity: 1;
    text-decoration: underline;
  }
}
  .mobile-lang-inline {
    display: flex;
    gap: 24px;
    margin-top: 8px;
    margin-bottom: 24px;
  }
  
  .mobile-lang-inline a {
    color: #fff;
    opacity: 0.5;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-family: var(--font-heading);
  }
  
  .mobile-lang-inline a.is-active {
    opacity: 1;
    text-decoration: underline;
  }

/* === MOBILE TWEAKS: BUTTONS & SHOWCASE PHOTO === */
@media (max-width: 991px) {
  /* Smaller, narrower contact buttons */
  .btn-hero, 
  .btn-slogan-oval, 
  .mobile-nav-contact, 
  .header-cta {
    padding: 10px 24px !important;
    font-size: 16px !important;
    max-width: 220px !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  
  /* Make the showcase photo larger/taller and move text to bottom */
  .showcase-photo {
    padding: 32px 16px !important;
  }
  .showcase-photo__inner img {
    aspect-ratio: 3/4 !important; /* taller mobile photo */
    object-position: center 30%; /* slightly shift focus up if needed */
  }
  .showcase-photo__overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.85) 100%) !important;
    align-items: flex-end !important;
    padding-bottom: 32px !important;
  }
  .showcase-photo__overlay h2 {
    font-size: clamp(28px, 8vw, 42px) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }
}

/* === MOBILE TWEAKS 4: HERO & MENU BUTTON === */
@media (max-width: 991px) {
  /* Make the hero slogan smaller so it fits in two lines */
  .hero h1.slogan-uniform {
    font-size: clamp(28px, 7vw, 42px) !important;
    line-height: 1.1 !important;
    max-width: 90% !important;
    margin: 0 auto !important;
  }
  
  /* Lower the menu button slightly and fix z-index */
  .mobile-menu-btn {
    margin-top: 12px !important;
    z-index: 900 !important; /* lower than mobile-nav (1000) so it hides behind the blur */
  }
}

/* === FORCE HERO TEXT TO TWO LINES ON MOBILE === */
@media (max-width: 991px) {
  .hero h1.slogan-uniform span {
    display: block !important;
  }
}

/* === MOBILE TWEAKS 5: CENTER MODAL === */
@media (max-width: 991px) {
  .project-modal, .offer-modal {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto !important;
    height: auto !important;
    max-height: 90vh !important;
    width: 92vw !important;
    position: fixed !important;
  }
}

/* === MOBILE TWEAKS 6: MODAL IMAGE FULL VISIBILITY === */
@media (max-width: 991px) {
  .project-modal__image-card {
    min-height: auto !important;
    aspect-ratio: 4/3 !important; /* Taller area to hold the photo gracefully */
    background: transparent !important; /* Remove background box if there's letterboxing */
    box-shadow: none !important; /* Remove shadow from the container since it might be transparent */
  }
  
  .project-modal__image {
    object-fit: cover !important;
    border-radius: 12px; /* Soften edges of the image itself */
  }
}

/* === MOBILE TWEAKS 7: MODAL GALLERY ARROWS === */
@media (max-width: 991px) {
  .project-modal__gallery-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(0, 0, 0, 0.8) !important;
  }
  
  .project-modal__gallery-btn--prev {
    left: 8px !important;
  }
  
  .project-modal__gallery-btn--next {
    right: 8px !important;
  }
}

/* === MOBILE TWEAKS 8: MODAL ORDER REARRANGEMENT === */
@media (max-width: 991px) {
  .project-modal__shell {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .project-modal__content {
    display: contents !important;
  }
  
  .project-modal__title {
    order: -2 !important;
    margin-bottom: 8px !important;
  }
  
  .project-modal__subtitle {
    order: -1 !important;
    margin-bottom: 24px !important;
  }
  
  .project-modal__visual {
    order: 0 !important;
    margin-bottom: 16px !important;
  }
  
  .project-modal__description,
  .project-modal__specs,
  .project-modal__actions,
  .whatsapp-note {
    order: 1 !important;
  }
  
  /* Make title slightly smaller to fit better on top */
  .project-modal__title {
    font-size: clamp(32px, 8vw, 42px) !important;
  }
  
  .project-modal__subtitle {
      font-size: 15px !important;
  }
}

/* === MOBILE TWEAKS 9: FIX VISUAL WIDTH === */
@media (max-width: 991px) {
  .project-modal__visual {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .project-modal__image-card {
    width: 100% !important;
    position: relative !important;
  }
}

/* === MOBILE TWEAKS 10: HERO BACKGROUND POSITION === */
@media (max-width: 991px) {
  .hero {
    /* Shifts the image strongly to the left by focusing on the right 80-85% portion */
    background-position: 100% center !important;
  }
}

/* === MOBILE TWEAKS 11: SLIDER AND SLOGAN === */
@media (max-width: 991px) {
  /* 1. Hide the contact button near the slogan and increase slogan text size */
  
  
  /* .btn-slogan-oval hidden removed */
  .dummy-class {
    display: none !important;
  }
  
  .section-head h2.slogan-uniform,
  .project-choice__header h2.slogan-uniform,
  .inter-slogan h2.slogan-uniform {
    font-size: clamp(34px, 8.5vw, 48px) !important;
    margin-bottom: 0 !important;
  }

  /* 2. Restore the media reveal (comparison) slider on mobile */
  .module-mediaReveal-content {
    display: flex !important;
    height: 480px !important;
    gap: 0 !important;
    overflow: hidden !important;
    border-radius: 24px !important;
    touch-action: none !important; /* Extremely important for touch dragging */
    box-shadow: 0 36px 90px rgba(25, 56, 47, .12) !important;
    background: var(--bg-main, #F5F1E8) !important;
  }

  .module-mediaReveal-item,
  .module-mediaReveal-item[data-index="0"],
  .module-mediaReveal-item[data-index="1"] {
    width: var(--width, 50%) !important;
    flex-basis: auto !important;
    height: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .module-mediaReveal-handle {
    display: block !important;
  }

  .module-mediaReveal-item .title {
    font-size: 13px !important;
    bottom: 12px !important;
    left: 12px !important;
    line-height: 1.2 !important;
  }
}



/* === MOBILE TWEAKS 12: TRUST GRID ROW === */
@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    padding: 0 8px !important;
  }
  .trust-item {
    padding: 10px 4px !important;
  }
  .trust-item strong {
    font-size: clamp(18px, 4.5vw, 22px) !important;
  }
  .trust-item span {
    font-size: 10px !important;
    line-height: 1.15 !important;
  }
  .trust-static {
    font-size: clamp(14px, 3.8vw, 18px) !important;
  }
}

/* === MOBILE TWEAKS 13: SMALLER SLOGANS === */
@media (max-width: 991px) {
  .hero h1.slogan-uniform,
  .section-head h2.slogan-uniform,
  .project-choice__header h2.slogan-uniform,
  .inter-slogan h2.slogan-uniform,
  .slogan-uniform {
    font-size: clamp(20px, 5.5vw, 26px) !important;
    line-height: 1.25 !important;
    max-width: 88% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .hero h1.slogan-uniform {
    margin-left: 0 !important; /* Keep hero left-aligned */
  }
}

/* === TWEAKS 14: HIDE CONTACT BUTTON IN PROJECT CHOICE GLOBALLY === */
.project-choice__header .btn-slogan-oval {
  display: none !important;
}

/* === NEW SIP TECHNOLOGY BLOCK === */
.sip-tech {
  background: var(--bg-main, #F5F1E8);
  padding: clamp(90px, 10vw, 150px) 0;
  overflow: hidden;
}

.sip-tech__heading {
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 0 24px;
}

.sip-system-card {
  width: min(1440px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
  border: 1px solid rgba(178,118,66,0.22);
  border-radius: 38px;
  background: rgba(255,255,255,0.45);
  padding: clamp(40px, 5vw, 80px);
  box-shadow: 0 30px 90px rgba(24,32,29,0.06);
}

.sip-system-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sip-system-image {
  width: min(620px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 45px rgba(24,32,29,0.12));
}

.sip-system-layers {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sip-layer-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
}

.sip-layer-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #b27642;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b27642;
  font-weight: 600;
}

.sip-layer-item strong {
  display: block;
  font-size: 18px;
  color: #101814;
}

.sip-layer-item p {
  margin: 4px 0 0;
  color: rgba(24,32,29,0.62);
  font-size: 16px;
}

.sip-benefit-grid {
  width: min(1440px, calc(100% - 72px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sip-benefit-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(24,32,29,0.08);
  padding: 28px;
}

.sip-benefit-card h3 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.sip-benefit-card p {
  margin: 0;
  color: rgba(24,32,29,0.66);
  font-size: 17px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  

  .sip-tech *,
  .sip-tech *::before,
  .sip-tech *::after {
    box-sizing: border-box;
  }

  .sip-tech {
    padding: 72px 0;
    overflow-x: hidden;
  }

  .sip-tech__heading {
    text-align: left;
    padding: 0 22px;
    margin-bottom: 34px;
  }

  .sip-tech .slogan-uniform {
    display: block;
    font-size: clamp(42px, 11vw, 58px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em;
    max-width: 100% !important;
    text-align: left !important;
  }

  .sip-tech .slogan-normal,
  .sip-tech .slogan-bold {
    display: block;
  }

  .sip-tech .section-lead {
    font-size: 17px;
    line-height: 1.55;
    max-width: 100%;
  }

  .sip-system-card {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: 0 auto;
    display: block;
    padding: 28px 20px 24px;
    border-radius: 28px;
    overflow: hidden;
  }

  .sip-system-visual {
    margin-bottom: 26px;
  }

  .sip-system-image {
    width: 88%;
    max-width: 360px;
    margin: 0 auto;
    display: block;
  }

  .sip-system-layers {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sip-layer-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(24,32,29,0.08);
  }

  .sip-layer-item:last-child {
    border-bottom: 0;
  }

  .sip-layer-number {
    width: 40px;
    height: 40px;
    font-size: 13px;
    flex-shrink: 0;
  }
  
  .sip-layer-item div {
    min-width: 0;
  }

  .sip-layer-item strong {
    font-size: 16px;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .sip-layer-item p {
    font-size: 14px;
    line-height: 1.35;
    margin-top: 3px;
    overflow-wrap: break-word;
  }

  .sip-benefit-grid {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .sip-tech__heading {
    max-width: 100%;
  }

  .sip-benefit-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .sip-benefit-card h3 {
    font-size: 28px;
    line-height: 1.08;
  }

  .sip-benefit-card p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* === MOBILE TWEAKS 15: COMPACT SPACING === */
@media (max-width: 991px) {
  /* Slightly reduce spacing between blocks */
  .module, .sip-tech, .cover-process, .inter-slogan {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  
  /* The inter-slogan blocks might rely on margin instead of padding */
  .inter-slogan {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Bring button closer to slogan */
  .slogan-uniform {
    margin-bottom: 14px !important;
  }
}

/* === MOBILE TWEAKS 16: UNIFORM COMPACT SPACING === */
@media (max-width: 991px) {
  /* Enforce exactly the same small distance between all blocks */
  .module, 
  .sip-tech, 
  .cover-process,
  .project-choice,
  .trust,
  .catalog {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .site-footer {
    padding-top: 40px !important;
    margin-top: 0 !important;
  }

  /* inter-slogan usually uses margin instead of padding */
  .inter-slogan {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* === TWEAKS 17: UNIFORM COMPACT SPACING GLOBALLY === */
.module, 
.sip-tech, 
.cover-process,
.project-choice,
.trust,
.catalog {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.site-footer {
  padding-top: 60px !important;
  margin-top: 0 !important;
}

.inter-slogan {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media (max-width: 991px) {
  .module, 
  .sip-tech, 
  .cover-process,
  .project-choice,
  .trust,
  .catalog {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .site-footer {
    padding-top: 40px !important;
  }
  .inter-slogan {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}

/* === TWEAKS 18: SHOWCASE BUTTON === */
.showcase-photo__overlay {
  flex-direction: column;
  gap: 32px;
}
.showcase-photo__overlay .btn {
  pointer-events: auto; /* Allow clicks since overlay is none */
}

@media (max-width: 991px) {
  .showcase-photo__overlay {
    gap: 20px;
  }
}

/* === TWEAKS 19: SHOWCASE LAYOUT FIXED === */
.showcase-photo__overlay {
  /* Override any previous flex-end from mobile */
  align-items: center !important; 
  justify-content: center !important;
  padding-bottom: 0 !important;
}

.showcase-photo__overlay h2 {
  /* Ensure H2 is perfectly centered in the container */
  margin: 0 !important;
}

.showcase-photo__overlay .btn {
  /* Pin the button strictly to the bottom */
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: auto !important;
}

/* Adjust button distance on smaller screens if needed */
@media (max-width: 991px) {
  .showcase-photo__overlay .btn {
    bottom: 24px;
  }
}

/* === TWEAKS 20: ROUNDED RECTANGLE BUTTONS === */
.btn, 
.btn-slogan-oval,
.project-modal__primary,
.project-modal__secondary {
  border-radius: 16px !important;
}

/* === TWEAKS 21: FULL FOOTER NAV === */
.footer-nav-full {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer-nav-full a {
  padding: 18px 0;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-nav-full a:hover {
  color: #fff;
}
.footer-nav-full .footer-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  width: 100%;
}
@media (max-width: 991px) {
  .footer-col--nav {
    width: 100%; /* Ensure it spans full width on mobile */
  }
}

/* === TWEAKS 22: FIX HEADER BUTTON VISIBILITY ON SCROLL === */
/* Overrides inline HTML styles that were hiding the button on beige backgrounds */
.is-scrolled .btn-outline {
  background: transparent !important;
  border-color: #B9733D !important; /* Stronger border to stand out */
  color: #19382F !important; /* Dark green text */
}

.is-scrolled .btn-outline:hover {
  background: rgba(185, 115, 61, 0.22) !important;
}

/* Also ensure the language switcher text changes color despite any potential inline overrides */
.is-scrolled .lang-switcher a {
  color: rgba(24, 32, 29, 0.6) !important;
}
.is-scrolled .lang-switcher a:hover,
.is-scrolled .lang-switcher a.is-active {
  color: #19382F !important;
}

/* === TWEAKS 23: LANG SWITCHER BRONZE BORDER === */
.is-scrolled .lang-switcher {
  background: transparent !important;
  border-color: #B9733D !important;
}



/* === TWEAKS 25: COMPACT DESKTOP MODAL === */
@media (min-width: 992px) {
  .project-modal {
    padding: 32px !important;
  }
  .project-modal__shell {
    gap: 32px !important;
  }
  
  /* Make main text font larger */
  .project-modal__description {
      font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
  }
}


/* === TWEAKS 26: ELEGANT MODAL SUBTITLES === */
.project-modal__subtitle {
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif) !important;
  font-style: italic !important;
  font-size: 22px !important;
  color: #B9733D !important; /* Copper color matches the elegant serif well */
  margin-bottom: 20px !important;
}

/* === TWEAKS 27: CATALOG CARD EXPAND ICON === */
/* Adds a subtle "+" icon to the bottom right of project images to indicate they can be clicked */
.card-media::after {
  content: '+';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(24, 32, 29, 0.5); /* dark semi-transparent */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
}

.catalog-card:hover .card-media::after {
  background: #B9733D; /* Copper */
  border-color: #B9733D;
  transform: scale(1.1);
}







/* === TWEAKS 31: CHOICE CARD READ MORE BADGE === */
.choice-card__short::after {
  content: 'Read more';
  display: block;
  width: max-content;
  margin-top: 16px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

html[lang="ru"] .choice-card__short::after {
  content: 'Подробнее';
}

html[lang="ro"] .choice-card__short::after {
  content: 'Află mai mult';
}

/* Hide the badge when the card is expanded so it doesn't overlap the full text */
.choice-card:hover .choice-card__short::after,
.choice-card.is-active .choice-card__short::after {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}



/* === TWEAKS 33: FULL SCREEN HERO HEIGHT === */
@media (max-width: 991px) {
  .hero {
    min-height: 100dvh !important;
    height: 100dvh !important;
  }
}

/* === TWEAKS 34: HERO MOBILE ADJUSTMENTS === */
@media (max-width: 991px) {
  /* Increase hero text size slightly */
  .hero h1.slogan-uniform {
    font-size: clamp(33px, 8.5vw, 48px) !important;
  }
  
  /* Shift hero image up to show more house and less floor */
  .hero {
    background-position: 85% 25% !important;
  }
  
  /* Lower the text a bit */
  .hero-inner {
    transform: translateY(6vh) !important;
  }
}
/* === TWEAKS 35: MOBILE FOOTER TWO COLUMNS === */
@media (max-width: 991px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    text-align: left !important;
  }
  .footer-col--brand {
    grid-column: 1 / 3;
    text-align: left; /* Keep left alignment for a clean look */
    margin-bottom: 16px;
  }
  .footer-col--nav, .footer-col--social {
    width: 100% !important;
  }
}

/* === TWEAKS 36: MOBILE PROCESS CARD DESIGN === */
@media (max-width: 991px) {
  .process-mobile-sticky {
    background: #252424;
    border-radius: 24px;
    margin: 16px;
    width: calc(100% - 32px);
    height: calc(100vh - 32px);
    top: 16px;
    padding: calc(var(--header-h) + 8px) 24px 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  }
}

/* === TWEAKS 37: RESTORE GAP BETWEEN PROCESS AND FAQ === */
@media (max-width: 991px) {
  .faq {
    padding-top: 64px !important;
  }
  .process-mobile-scroll {
    margin-bottom: 32px !important;
  }
}




/* === TWEAKS 39: HEIGHT-AWARE PROCESS BLOCK ADAPTATION === */
@media (max-width: 991px) {
  .process-mobile-sticky {
    padding: calc(var(--header-h) + 1vh) 24px 3vh !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .process-mobile-media {
    flex: 0 1 44vh !important; /* Made image significantly larger */
    min-height: 220px !important;
    margin-bottom: clamp(12px, 2vh, 24px) !important; /* Tighter gap to text */
    aspect-ratio: auto !important;
  }
  .process-mobile-steps {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-evenly !important; 
    gap: 0 !important;
  }
  .process-mobile-step {
    font-size: min(6.5vw, 3.4vh) !important; /* Text is slightly smaller to leave room for big image */
    line-height: 1.1 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}


/* === TWEAKS 40: MOBILE MENU BUTTON VISIBILITY ON SCROLL === */
.is-scrolled .mobile-menu-btn {
  background: transparent !important;
  border-color: #B9733D !important; /* Bronze border */
  color: #19382F !important; /* Green lines */
  box-shadow: none !important;
}
.is-scrolled .mobile-menu-btn:active {
  background: rgba(185, 115, 61, 0.12) !important;
}


/* === TWEAKS 41: SMALLER FAQ HEADER === */
.faq .section-head h2 {
  font-size: clamp(30px, 4.5vw, 48px) !important;
}
@media (max-width: 991px) {
  .faq .section-head h2 {
    font-size: clamp(28px, 6.5vw, 38px) !important;
  }
}


/* === TWEAKS 43: UNIFORM SPACING AND SLOGANS === */
/* 1. Equal distance between all major blocks */
.module, .sip-tech, .cover-process, .catalog, .faq, .project-choice {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 991px) {
  .module, .sip-tech, .cover-process, .catalog, .faq, .project-choice {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}

/* 2. Format inter-slogan blocks: button clearly under slogan with small gap */
.inter-slogan {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .inter-slogan {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
    gap: 20px !important;
  }
}

/* 3. Slogans strictly equal and slightly larger */
.inter-slogan h2.slogan-uniform,
.inter-slogan h2 {
  font-size: clamp(40px, 9.5vw, 58px) !important;
  line-height: 1.15 !important;
  margin-bottom: 0 !important;
  text-align: center !important;
}
@media (max-width: 991px) {
  .inter-slogan h2.slogan-uniform,
  .inter-slogan h2 {
    font-size: clamp(30px, 7.5vw, 42px) !important;
  }
}


/* === TWEAKS 44: FIX FIRST SLOGAN (CATALOG HEAD) === */
.catalog .section-head {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  margin-bottom: 80px !important;
}
@media (max-width: 991px) {
  .catalog .section-head {
    gap: 20px !important;
    margin-bottom: 64px !important;
  }
}

.catalog .section-head h2.slogan-uniform,
.catalog .section-head h2 {
  font-size: clamp(40px, 9.5vw, 58px) !important;
  line-height: 1.15 !important;
  margin-bottom: 0 !important;
  text-align: center !important;
}
@media (max-width: 991px) {
  .catalog .section-head h2.slogan-uniform,
  .catalog .section-head h2 {
    font-size: clamp(30px, 7.5vw, 42px) !important;
  }
}


/* === TWEAKS 45: SLIDING REVEAL TITLES === */
/* Reset default left positioning */
.module-mediaReveal-item .title {
  left: auto !important;
  right: auto !important;
}
/* Left image: title attached to the right edge (the handle) */
.module-mediaReveal-item[data-index="0"] .title {
  right: clamp(24px, 3vw, 56px) !important;
  text-align: right;
}
/* Right image: title attached to the left edge (the handle) */
.module-mediaReveal-item[data-index="1"] .title {
  left: clamp(24px, 3vw, 56px) !important;
  text-align: left;
}
@media (max-width: 991px) {
  .module-mediaReveal-item[data-index="0"] .title {
    right: 16px !important;
  }
  .module-mediaReveal-item[data-index="1"] .title {
    left: 16px !important;
  }
}


/* === TWEAKS 46: TRUE BEFORE/AFTER SLIDER (OVERLAPPING) === */
.module-mediaReveal-content {
  display: block !important;
}

.module-mediaReveal-item,
.module-mediaReveal-item[data-index="0"],
.module-mediaReveal-item[data-index="1"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  flex: none !important;
  border-radius: 0 !important; /* The content wrapper handles the border radius */
}

/* Ensure the wrapper clips the border radius */
.module-mediaReveal-content {
  border-radius: clamp(32px, 2.6vw, 40px) !important;
  overflow: hidden !important;
}
@media (max-width: 991px) {
  .module-mediaReveal-content {
    border-radius: 24px !important;
  }
}

/* Left image on top, clipped by the split */
.module-mediaReveal-item[data-index="0"] {
  z-index: 2 !important;
  clip-path: polygon(0 0, var(--reveal-split, 50%) 0, var(--reveal-split, 50%) 100%, 0 100%) !important;
}

/* Right image at the bottom */
.module-mediaReveal-item[data-index="1"] {
  z-index: 1 !important;
  clip-path: none !important;
}


/* === TWEAKS 47: HERO SLOGAN LINE HEIGHT === */
.hero h1.slogan-uniform {
  line-height: 1.35 !important;
}
.hero h1.slogan-uniform span {
  display: inline !important; /* Let the <br> handle the break, avoid double spacing */
}
@media (max-width: 991px) {
  .hero h1.slogan-uniform {
    line-height: 1.35 !important;
  }
}


/* === TWEAKS 48: MOBILE REVEAL ASPECT RATIO === */
@media (max-width: 991px) {
  .module-mediaReveal-content {
    /* Make the container proportional to the image (4:3) so the sides aren't cropped */
    height: 75vw !important;
    max-height: 400px !important;
    min-height: 300px !important;
  }
}


/* === TWEAKS 49: TRUE OVERLAP CLIP-PATH & CORNER TITLES === */
/* Clip the left item to reveal the right */
.module-mediaReveal-item[data-index="0"] {
  clip-path: polygon(0 0, var(--reveal-split, 50%) 0, var(--reveal-split, 50%) 100%, 0 100%) !important;
}
/* Clip the right item to hide what is behind the left */
.module-mediaReveal-item[data-index="1"] {
  clip-path: polygon(var(--reveal-split, 50%) 0, 100% 0, 100% 100%, var(--reveal-split, 50%) 100%) !important;
}

/* Titles configuration */
.module-mediaReveal-item .title {
  position: absolute !important;
  bottom: clamp(16px, 3vw, 24px) !important;
  font-size: clamp(14px, 1.5vw, 18px) !important; /* Smaller size */
  z-index: 10 !important;
  color: #FFF !important;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5) !important;
  width: auto !important;
  white-space: nowrap !important;
  transition: opacity 0.3s ease !important;
}
/* Left image title attached to left edge */
.module-mediaReveal-item[data-index="0"] .title {
  left: clamp(16px, 3vw, 24px) !important;
  right: auto !important;
  text-align: left !important;
}
/* Right image title attached to right edge */
.module-mediaReveal-item[data-index="1"] .title {
  right: clamp(16px, 3vw, 24px) !important;
  left: auto !important;
  text-align: right !important;
}

@media (max-width: 991px) {
  .module-mediaReveal-item .title {
    font-size: 11px !important;
    bottom: 12px !important;
  }
  .module-mediaReveal-item[data-index="0"] .title {
    left: 12px !important;
  }
  .module-mediaReveal-item[data-index="1"] .title {
    right: 12px !important;
  }
}


/* === TWEAKS 50: DISABLE TITLE INACTIVE JUMPS === */
.module-mediaReveal-item.is-inactive .title {
  opacity: 1 !important;
  transform: none !important;
}


/* === TWEAKS 51: PERFECT ALIGNMENT (NO JUMPS) === */
/* Disable the "active" zoom effect so they never shift when sliding */
.module-mediaReveal-item .media img,
.module-mediaReveal-item.is-active .media img,
.module-mediaReveal-item.is-inactive .media img {
  transition: none !important;
}

/* Base scale for dark house (left) */
.module-mediaReveal-item[data-index="0"] .media img {
  transform: scale(1) !important;
  object-position: center center !important;
}

/* Slightly scale up the white house (right) to match the dark house */
.module-mediaReveal-item[data-index="1"] .media img {
  /* You can tweak 1.04 and translation if they don't perfectly overlap */
  transform: scale(1.095) translateY(-1.5%) translateX(-0.5%) !important; 
  object-position: center center !important;
}


/* === TWEAKS 52: SIP TECH HEADING & LEAD TEXT === */
/* Remove any line between slider and SIP tech */
.sip-tech {
  border-top: none !important;
  box-shadow: none !important;
}

/* Revert slogan to look like all other slogans */
.sip-tech .slogan-uniform {
  font-size: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-align: center !important;
}
.sip-tech .slogan-normal,
.sip-tech .slogan-bold {
  display: inline !important; /* Revert block display from earlier tweaks */
}
@media (max-width: 991px) {
  .sip-tech .slogan-uniform {
    font-size: clamp(30px, 7.5vw, 42px) !important; /* match standard */
    line-height: 1.15 !important;
    text-align: center !important;
  }
}

/* Align heading block with the card below */
.sip-tech__heading {
  width: min(1440px, calc(100% - 72px)) !important;
  max-width: none !important;
  margin: 0 auto 56px !important;
  padding: 0 !important;
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991px) {
  .sip-tech__heading {
    width: calc(100% - 40px) !important;
    margin-bottom: 34px !important;
  }
}

/* Beautifully format the lead text underneath */
.sip-tech .section-lead {
  font-family: var(--font-text, 'Inter', sans-serif) !important;
  font-size: clamp(16px, 1.8vw, 18px) !important;
  line-height: 1.6 !important;
  color: rgba(24, 32, 29, 0.75) !important;
  max-width: 800px !important; /* Keep it readable, don't let it stretch 1440px */
  margin: 16px auto 0 !important;
  text-align: center !important;
}
@media (max-width: 991px) {
  .sip-tech .section-lead {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
}


/* === TWEAKS 53: PROJECT CHOICE HEADER REFORMAT (MOBILE ONLY) === */
@media (max-width: 991px) {
  /* Remove the line and stack everything vertically */
  .project-choice__header {
    border-top: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: clamp(40px, 5vw, 64px) !important;
    padding-top: 0 !important;
  }
  .project-choice__header > div {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Revert the slogan sizes to match all standard slogans globally */
  .project-choice__header h2.slogan-uniform {
    font-size: clamp(30px, 7.5vw, 42px) !important;
    line-height: 1.15 !important;
    text-align: center !important;
    margin: 0 auto 24px !important;
    max-width: 100% !important;
  }
  
  .project-choice__header h2.slogan-uniform span {
    display: inline !important; /* allow <br> to work naturally */
  }

  /* Beautifully format the text under the slogan */
  .project-choice__header p {
    font-family: var(--font-text, 'Inter', sans-serif) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: rgba(24, 32, 29, 0.75) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
}

/* === TWEAKS 54: HIDE WHATSAPP BUTTON IN MODAL === */
.project-modal__secondary,
.whatsapp-note {
  display: none !important;
}

/* Ensure the primary button looks balanced on its own */
.project-modal__primary {
  width: 100% !important; /* Full width since it's the only button now */
}

/* === TWEAKS 55: HIDE MODAL THUMBS === */
.project-modal__thumbs {
  display: none !important;
}

/* === TWEAKS 56: HIDE MODAL SPECS === */
.project-modal__specs {
  display: none !important;
}

/* === TWEAKS 57: DISABLE PROCESS TAB CLICKS & LOGO SELECTION === */
.cover-process__step,
.process-mobile-step {
  pointer-events: none !important;
}
.logo, .hero-logo, .mobile-nav-logo {
  user-select: none !important;
  -webkit-user-select: none !important;
  cursor: pointer !important;
}

/* === TWEAKS 58: SLIGHTLY SMALLER SLOGANS BETWEEN BLOCKS === */
.inter-slogan h2.slogan-uniform, .inter-slogan h2, .catalog .section-head h2.slogan-uniform, .catalog .section-head h2, .sip-tech .slogan-uniform, .project-choice__header h2.slogan-uniform {
  font-size: clamp(36px, 8vw, 50px) !important;
}
@media (max-width: 991px) {
  .inter-slogan h2.slogan-uniform, .inter-slogan h2, .catalog .section-head h2.slogan-uniform, .catalog .section-head h2, .sip-tech .slogan-uniform, .project-choice__header h2.slogan-uniform {
    font-size: clamp(26px, 6.5vw, 36px) !important;
  }
}

/* === TWEAKS 59: UNIFORM FONT FOR SLOGANS === */
.slogan-uniform .slogan-normal {
  font-family: var(--font-text, 'Inter', sans-serif) !important;
  font-style: normal !important;
  font-weight: 400 !important;
}
.slogan-uniform .slogan-bold {
  font-family: var(--font-text, 'Inter', sans-serif) !important;
  font-style: normal !important;
  font-weight: 800 !important;
}

/* === TWEAKS 60: EVEN SMALLER SLOGANS BETWEEN BLOCKS === */
.inter-slogan h2.slogan-uniform, .inter-slogan h2, .catalog .section-head h2.slogan-uniform, .catalog .section-head h2, .sip-tech .slogan-uniform, .project-choice__header h2.slogan-uniform {
  font-size: clamp(32px, 7vw, 44px) !important;
}
@media (max-width: 991px) {
  .inter-slogan h2.slogan-uniform, .inter-slogan h2, .catalog .section-head h2.slogan-uniform, .catalog .section-head h2, .sip-tech .slogan-uniform, .project-choice__header h2.slogan-uniform {
    font-size: clamp(24px, 5.5vw, 32px) !important;
  }
}

/* === TWEAKS 61: BEAUTIFUL HERO/SHOWCASE SLOGANS & COMPACT MOBILE BUTTON === */
.hero h1.slogan-uniform,
.hero h1.slogan-uniform .slogan-normal,
.hero h1.slogan-uniform .slogan-bold,
.showcase-photo__overlay h2 {
  font-family: var(--font-heading, 'Playfair Display', serif) !important;
  font-weight: 400 !important;
  font-style: italic !important;
}
.showcase-photo__overlay h2 {
  font-size: clamp(36px, 8vw, 58px) !important;
  line-height: 1.15 !important;
  margin-bottom: 24px !important;
}
@media (max-width: 991px) {
  .inter-slogan h2.slogan-uniform, 
  .inter-slogan h2, 
  .catalog .section-head h2.slogan-uniform, 
  .catalog .section-head h2,
  .sip-tech .slogan-uniform, 
  .project-choice__header h2.slogan-uniform {
    margin-bottom: 12px !important;
  }
  .btn-slogan-oval {
    padding: 10px 24px !important;
    font-size: 14px !important;
  }
}

/* === TWEAKS 62: FIX MOBILE BUTTON GAP & SIZE === */
@media (max-width: 991px) {
  .inter-slogan, 
  .catalog .section-head,
  .sip-tech {
    gap: 12px !important;
  }
  .btn-slogan-oval {
    padding: 8px 20px !important;
    font-size: 13px !important;
  }
}

/* === TWEAKS 63: BEAUTIFUL AREA BADGE ON CATALOG CARDS === */
.catalog-card .card-head {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 0 !important;
}
.catalog-card .card-head h3 {
  margin: 0 !important;
  margin-right: auto !important;
}
.catalog-card .card-head strong {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(232, 90, 28, 0.08) !important;
  color: #E85A1C !important;
  padding: 6px 14px !important;
  border-radius: 50px !important;
  font-family: var(--font-text, 'Inter', sans-serif) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
}

/* === TWEAKS 64: PERFECTLY ALIGN CARD HEAD === */
.catalog-card .card-head {
  align-items: center !important;
  line-height: 1 !important;
}
.catalog-card .card-head h3 {
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 auto 0 0 !important;
  display: flex !important;
  align-items: center !important;
}
.catalog-card .card-head strong {
  margin: 0 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* === TWEAKS 65: SMART ADAPTIVE MODAL IMAGES === */
/* Desktop: image card stretches to match text column height */
.project-modal__image-card {
  min-height: 300px !important;
  height: 100% !important;
  aspect-ratio: unset !important;
  background: #e9e2d5 !important;
  box-shadow: 0 16px 48px rgba(24, 32, 29, 0.10) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  position: relative !important;
  flex: 1 1 auto !important;
}
.project-modal__image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 55% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* === TWEAKS 66: RESTORE AND BEAUTIFY MODAL SPECS === */
.project-modal__specs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.project-modal__spec {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(232, 90, 28, 0.06) !important;
  color: #E85A1C !important;
  padding: 10px 18px !important;
  border: 1px solid rgba(232, 90, 28, 0.15) !important;
  border-radius: 50px !important;
  font-family: var(--font-text, 'Inter', sans-serif) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: 0.02em !important;
}

/* === TWEAKS 67: COMPACT MODAL ON MOBILE === */
@media (max-width: 991px) {
  .project-modal__title { margin-bottom: 4px !important; }
  .project-modal__subtitle { margin-bottom: 12px !important; }
  .project-modal__visual { margin-bottom: 12px !important; }
  .project-modal__description { margin-bottom: 16px !important; }
  .project-modal__specs { margin-top: 0 !important; margin-bottom: 16px !important; gap: 8px !important; }
  .project-modal__spec { padding: 8px 14px !important; font-size: 13px !important; }
}

/* === TWEAKS 68: COMPACT MODAL ACTIONS (MOBILE) === */
@media (max-width: 991px) {
  .project-modal__specs {
    margin-bottom: 12px !important;
  }
  .project-modal__actions {
    margin-top: 0 !important;
  }
}

/* === TWEAKS 69: FULL WIDTH MODAL BUTTON (MOBILE) === */
@media (max-width: 991px) {
  .project-modal__actions {
    width: 100% !important;
  }
  .project-modal__primary {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 24px !important;
    font-size: 16px !important;
  }
}

/* === TWEAKS 70: PREMIUM MOBILE MENU BUTTON === */
.mobile-nav-contact {
  background: #E85A1C !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 14px 32px !important;
  font-size: 16px !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 8px 24px rgba(232, 90, 28, 0.25) !important;
  margin-top: 24px !important;
}

/* === TWEAKS 71: SMART PROJECT MODAL OPTIMIZATION === */
  @media (min-width: 1025px) {
  .project-modal {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    bottom: auto !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 94vw !important;
    max-width: 1380px !important;
    height: 90vh !important;
    max-height: 840px !important;
    border-radius: 32px !important;
    padding: 44px !important;
    overflow: hidden !important;
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    margin: 0 !important;
  }
  .project-modal[open] {
    display: flex !important;
  }
  
  .project-modal__shell {
    display: grid !important;
    grid-template-columns: minmax(0, 1.3fr) minmax(360px, 1fr) !important;
    gap: 48px !important;
    align-items: stretch !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .project-modal__visual {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 20px !important;
  }

  .project-modal__image-card {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    background: #f3eee3 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    position: relative !important;
    box-shadow: 0 12px 36px rgba(24, 32, 29, 0.08) !important;
    flex-shrink: 0 !important;
  }

  .project-modal__image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 55% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .project-modal__thumbs {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    margin-top: 4px !important;
  }

  .project-modal__thumb {
    width: 80px !important;
    height: 54px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    cursor: pointer !important;
    opacity: 0.55 !important;
    transition: all 0.2s ease !important;
    border: 2px solid transparent !important;
    background: #f3eee3 !important;
  }

  .project-modal__thumb.is-active, .project-modal__thumb:hover {
    opacity: 1 !important;
    border-color: #E85A1C !important;
  }

  .project-modal__content {
    height: 100% !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding-right: 12px !important;
  }

  .project-modal__title {
      font-size: 30px !important;
    margin-bottom: 8px !important;
  }

  .project-modal__subtitle {
    margin-bottom: 24px !important;
  }

  .project-modal__description {
      font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
    color: rgba(24, 32, 29, 0.8) !important;
  }

  .project-modal__specs {
    margin-bottom: 24px !important;
  }

  .project-modal__actions {
    margin-top: auto !important;
    padding-top: 16px !important;
    width: 100% !important;
  }
}

@media (max-width: 1024px) {
  .project-modal {
    position: fixed !important;
    top: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    width: calc(100% - 24px) !important;
    height: calc(100vh - 24px) !important;
    max-height: calc(100vh - 24px) !important;
    border-radius: 24px !important;
    padding: 24px !important;
    overflow-y: auto !important;
    display: none !important;
  }
  .project-modal[open] {
    display: block !important;
  }

  .project-modal__shell {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    height: auto !important;
    overflow: visible !important;
  }

  .project-modal__visual {
    height: auto !important;
    gap: 12px !important;
  }

  .project-modal__image-card {
    aspect-ratio: 4/3 !important;
    height: auto !important;
    min-height: 240px !important;
    background: #f3eee3 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .project-modal__image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .project-modal__thumbs {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    margin-top: 4px !important;
  }

  .project-modal__thumb {
    width: 64px !important;
    height: 44px !important;
    border-radius: 6px !important;
    object-fit: cover !important;
    cursor: pointer !important;
    opacity: 0.55 !important;
    transition: all 0.2s ease !important;
    border: 2px solid transparent !important;
    background: #f3eee3 !important;
  }

  .project-modal__thumb.is-active, .project-modal__thumb:hover {
    opacity: 1 !important;
    border-color: #E85A1C !important;
  }

  .project-modal__content {
    height: auto !important;
    overflow-y: visible !important;
    padding-right: 0 !important;
  }
}

/* === TWEAKS 72: SHOW FULL PLAN IMAGES === */
.project-modal__image[src*="plan"] {
  object-fit: contain !important;
  background-color: #ffffff !important;
}

/* Reduced sizes for modal to fit on one screen */
.project-modal__title {
  font-size: 38px !important;
}
.project-modal__subtitle {
  font-size: 20px !important;
  margin-bottom: 16px !important;
}
.project-modal__description {
  font-size: 17px !important;
  line-height: 1.55 !important;
}
.project-modal__specs {
  margin-bottom: 16px !important;
}
.project-modal__spec {
  font-size: 14px !important;
  padding: 8px 14px !important;
}

/* Increase sizes in the catalog cards */
.catalog-card .card-head h3 {
  font-size: 32px !important;
}
.catalog-card .card-body p {
  font-size: 18px !important;
  line-height: 1.6 !important;
}

/* Make the project modal slightly wider */
.project-modal {
  width: min(100% - 24px, 1440px) !important;
  max-width: 1440px !important;
}

/* Reset hero background position to center so it isn't overly zoomed/cropped on one side */
.hero {
  background-position: center center !important;
}
