:root {
  --paper:     #F5F0E8;
  --paper-dk:  #EDE7DA;
  --concrete:  #D4CFC8;
  --terra:     #B5652A;
  --terra-lt:  #D4894E;
  --ink-p:     #1E1B16;
  --ink-mid:   #3D3830;
  --dust:      #8A847A;
  --white-p:   #FDFBF8;
  --serif-p:   'EB Garamond', Georgia, serif;
  --mono-p:    'Space Mono', 'Courier New', monospace;
  --ease-p:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

.elementor-widget-aaikya-proj-hero,
.elementor-widget-aaikya-proj-gallery,
.elementor-widget-aaikya-proj-content,
.elementor-widget-aaikya-proj-sidebar,
.elementor-widget-aaikya-process-timeline,
.elementor-widget-aaikya-visual-break,
.elementor-widget-aaikya-related-projects,
.elementor-widget-aaikya-cta-strip {
  font-family: var(--serif-p);
  color: var(--ink-p);
  line-height: 1.6;
}

/* ── BREADCRUMB ───────────────────────────────────────────────────────────── */
.ak-breadcrumb {
  padding: 80px 56px 0;
  max-width: 1320px; margin: 0 auto;
}
.ak-bc-list {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
  font-family: var(--mono-p); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--dust);
}
.ak-bc-list a { color: var(--dust); text-decoration: none; transition: color 0.2s; }
.ak-bc-list a:hover { color: var(--terra); }
.ak-bc-sep { color: var(--concrete); }
.ak-bc-current { color: var(--terra); }

/* ── PROJECT HERO ───────────────────────────────────────────────────────── */
.ak-proj-hero {
  padding: 40px 56px 0; max-width: 1320px; margin: 0 auto;
}
.ak-hero-title-row {
  display: grid; grid-template-columns: 1fr auto; align-items: flex-end;
  gap: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--concrete); margin-bottom: 32px;
}
.ak-proj-index {
  font-family: var(--mono-p); font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dust); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.ak-proj-index::before {
  content: ''; width: 24px; height: 1px; background: var(--terra);
}
h1.ak-proj-title {
  font-family: var(--serif-p); font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400; line-height: 0.95; letter-spacing: -0.02em; color: var(--ink-p); margin: 0;
}
h1.ak-proj-title em { font-style: italic; color: var(--terra); }

.ak-status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono-p); font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 8px 16px; border: 1px solid rgba(0,0,0,0.12);
  color: var(--ink-mid); white-space: nowrap;
}
.ak-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #5BAD72; }

.ak-spec-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-bottom: 48px; border: 1px solid var(--concrete);
}
.ak-spec-cell { padding: 20px 28px; border-right: 1px solid var(--concrete); }
.ak-spec-cell:last-child { border-right: none; }
.ak-spec-label {
  font-family: var(--mono-p); font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dust); margin-bottom: 6px;
}
.ak-spec-value {
  font-family: var(--serif-p); font-size: 1.05rem; color: var(--ink-p); font-weight: 500; line-height: 1.3;
}

.ak-hero-visual {
  width: 100%; background: var(--ink-p); position: relative; overflow: hidden;
  aspect-ratio: 16/7; margin-bottom: 4px;
}
.ak-hero-visual-bg {
  position: absolute; inset: 0; background: linear-gradient(135deg, #2A2318 0%, #1E1B16 40%, #2C2418 100%);
}
.ak-hero-illus {
  position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 0;
}
.ak-hero-illus img, .ak-hero-illus svg { width: 100%; height: 85%; object-fit: contain; }
.ak-hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6; pointer-events: none;
}
.ak-hero-caption {
  position: absolute; bottom: 24px; right: 28px; font-family: var(--mono-p); font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25);
}

@media (max-width: 1024px) {
  .ak-breadcrumb, .ak-proj-hero { padding-left: 28px; padding-right: 28px; }
  .ak-spec-bar { grid-template-columns: repeat(2, 1fr); }
  .ak-spec-cell:nth-child(2) { border-right: none; }
  .ak-spec-cell:nth-child(3), .ak-spec-cell:nth-child(4) { border-top: 1px solid var(--concrete); }
}
@media (max-width: 640px) {
  .ak-hero-title-row { grid-template-columns: 1fr; }
  .ak-spec-bar { grid-template-columns: 1fr; }
  .ak-spec-cell { border-right: none; border-bottom: 1px solid var(--concrete); }
  .ak-hero-visual { aspect-ratio: 4/3; }
}

/* ── GALLERY GRID ───────────────────────────────────────────────────────── */
.ak-gallery-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 4px; margin-bottom: 4px; padding: 0 56px; max-width: 1432px; margin-left: auto; margin-right: auto;
}
.ak-gallery-cell {
  position: relative; overflow: hidden; background: var(--ink-mid);
}
.ak-gallery-cell.span-col { grid-column: span 1; grid-row: span 2; }
.ak-gallery-cell-bg {
  position: absolute; inset: 0; transition: transform 0.8s var(--ease-out); background-size: cover; background-position: center;
}
.ak-gallery-cell:hover .ak-gallery-cell-bg { transform: scale(1.04); }
.ak-cell-label {
  position: absolute; bottom: 16px; left: 20px; font-family: var(--mono-p); font-size: 0.58rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 1024px) {
  .ak-gallery-grid { padding: 0 28px; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .ak-gallery-cell.span-col { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 640px) {
  .ak-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ak-gallery-cell { aspect-ratio: 16/9; }
  .ak-gallery-cell.span-col { grid-column: span 1; }
}

/* ── PROJECT CONTENT & NARRATIVE ────────────────────────────────────────── */
.ak-content-area {
  padding: 80px 56px; max-width: 1320px; margin: 0 auto;
}
.ak-narrative h2 {
  font-family: var(--serif-p); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.15; color: var(--ink-p); margin-bottom: 28px; margin-top:0;
}
.ak-narrative h2 em { font-style: italic; color: var(--terra); }
.ak-narrative p {
  font-family: var(--serif-p); font-size: 1.08rem; line-height: 1.9; color: var(--ink-mid); margin-bottom: 24px; font-weight: 400;
}
.ak-pull-quote {
  border-left: 3px solid var(--terra); padding: 20px 28px; margin: 40px 0; background: var(--paper-dk);
}
.ak-pull-quote p {
  font-size: 1.3rem; line-height: 1.6; font-style: italic; color: var(--ink-p); margin: 0;
}
.ak-principles { margin-top: 56px; }
.ak-principles-title {
  font-family: var(--mono-p); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra); margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.ak-principles-title::after { content: ''; flex: 1; height: 1px; background: var(--concrete); }
.ak-principle-list { display: flex; flex-direction: column; gap: 0; }
.ak-principle-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--concrete);
}
.ak-p-num { font-family: var(--mono-p); font-size: 0.7rem; color: var(--terra); padding-top: 4px; }
.ak-p-title { font-family: var(--mono-p); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-p); margin-bottom: 4px; }
.ak-p-desc { font-family: var(--serif-p); font-size: 0.95rem; color: var(--dust); line-height: 1.7; }

@media (max-width: 1024px) {
  .ak-content-area { padding: 60px 28px; }
}

/* ── SIDEBAR ────────────────────────────────────────────────────────────── */
.ak-sidebar { position: sticky; top: 84px; }
.ak-sidebar-card { background: var(--ink-p); padding: 36px; margin-bottom: 4px; }
.ak-sc-label { font-family: var(--mono-p); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.ak-sc-title { font-family: var(--serif-p); font-size: 1.4rem; color: #fff; font-weight: 400; line-height: 1.2; margin-bottom: 16px; }
.ak-sc-body { font-family: var(--serif-p); font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 24px; }
.ak-sc-cta {
  display: block; background: var(--terra); color: #fff; text-align: center; padding: 14px 24px; font-family: var(--mono-p); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background 0.25s; border: none; width: 100%;
}
.ak-sc-cta:hover { background: var(--terra-lt); color: #fff; }

.ak-detail-card { border: 1px solid var(--concrete); padding: 28px; margin-bottom: 4px; }
.ak-detail-card-title { font-family: var(--mono-p); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dust); margin-bottom: 20px; }
.ak-detail-rows { display: flex; flex-direction: column; gap: 0; }
.ak-detail-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--concrete); gap: 16px; }
.ak-detail-row:last-child { border: none; padding-bottom: 0; }
.ak-dr-key { font-family: var(--mono-p); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dust); }
.ak-dr-val { font-family: var(--serif-p); font-size: 0.9rem; color: var(--ink-p); text-align: right; }

.ak-tags-card { border: 1px solid var(--concrete); padding: 28px; }
.ak-tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.ak-tag {
  font-family: var(--mono-p); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border: 1px solid var(--concrete); color: var(--dust); transition: border-color 0.2s, color 0.2s;
}
.ak-tag:hover { border-color: var(--terra); color: var(--terra); cursor: default; }

@media (max-width: 1024px) {
  .ak-sidebar { position: static; margin-top: 60px;}
}

/* ── PROCESS TIMELINE ───────────────────────────────────────────────────── */
.ak-process-section {
  background: var(--ink-p); padding: 80px 56px; position: relative; overflow: hidden;
}
.ak-process-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(181,101,42,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(181,101,42,0.04) 1px, transparent 1px); background-size: 64px 64px;
}
.ak-process-inner { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }
.ak-process-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ak-ph-label { font-family: var(--mono-p); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.ak-ph-title { font-family: var(--serif-p); font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; font-weight: 400; line-height: 1.1; margin:0;}
.ak-ph-title em { font-style: italic; color: rgba(255,255,255,0.4); }
.ak-ph-sub { font-family: var(--serif-p); font-size: 0.95rem; color: rgba(255,255,255,0.35); max-width: 300px; line-height: 1.7; text-align: right; margin:0;}

.ak-process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.ak-process-timeline::before {
  content: ''; position: absolute; top: 22px; left: 11%; right: 11%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,101,42,0.4), rgba(181,101,42,0.4), transparent);
}
.ak-pt-step { padding: 0 20px; }
.ak-pt-ring {
  width: 44px; height: 44px; border: 1px solid rgba(181,101,42,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 28px; background: var(--ink-p); position: relative; z-index: 1; transition: background 0.3s, border-color 0.3s;
}
.ak-pt-step:hover .ak-pt-ring { background: var(--terra); border-color: var(--terra); }
.ak-pt-n { font-family: var(--mono-p); font-size: 0.75rem; font-weight: 700; color: var(--terra); transition: color 0.3s; }
.ak-pt-step:hover .ak-pt-n { color: #fff; }
.ak-pt-title { font-family: var(--serif-p); font-size: 1.1rem; color: #fff; font-weight: 400; margin-bottom: 10px; line-height: 1.2; }
.ak-pt-body { font-family: var(--serif-p); font-size: 0.88rem; color: rgba(255,255,255,0.35); line-height: 1.75; }
.ak-pt-time { margin-top: 16px; font-family: var(--mono-p); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); opacity: 0.7; }

@media (max-width: 1024px) {
  .ak-process-section { padding: 60px 28px; }
  .ak-process-timeline { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ak-process-timeline::before { display: none; }
}
@media (max-width: 640px) {
  .ak-process-timeline { grid-template-columns: 1fr; }
}

/* ── VISUAL BREAK ───────────────────────────────────────────────────────── */
.ak-visual-break {
  height: 480px; background: var(--paper-dk); position: relative; overflow: hidden;
}
.ak-vb-inner {
  position: absolute; inset: 0; background: linear-gradient(160deg, #2A2318 0%, #1E1B16 60%, #251F14 100%); display: flex; align-items: center; justify-content: center;
}
.ak-vb-text {
  font-family: var(--serif-p); font-size: clamp(80px, 14vw, 200px); font-weight: 400; font-style: italic; color: rgba(181,101,42,0.07); letter-spacing: -0.04em; white-space: nowrap; user-select: none; animation: driftText 20s ease-in-out infinite alternate;
}
.ak-vb-plan { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.18; }
.ak-vb-plan img, .ak-vb-plan svg { max-width: 80%; max-height: 80%; object-fit: contain; }

/* ── RELATED PROJECTS ───────────────────────────────────────────────────── */
.ak-related-section { padding: 80px 56px; max-width: 1320px; margin: 0 auto; }
.ak-rel-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--concrete); }
.ak-rel-label { font-family: var(--mono-p); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.ak-rel-title { font-family: var(--serif-p); font-size: 2rem; font-weight: 400; color: var(--ink-p); margin:0;}
.ak-rel-all { font-family: var(--mono-p); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dust); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.ak-rel-all:hover { color: var(--terra); }
.ak-rel-all::after { content: '→'; transition: transform 0.2s; }
.ak-rel-all:hover::after { transform: translateX(4px); }

.ak-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.ak-rel-card { display: block; text-decoration: none; background: var(--ink-p); position: relative; overflow: hidden; aspect-ratio: 4/3; }
.ak-rel-card-bg { position: absolute; inset: 0; transition: transform 0.7s var(--ease-out); background-size: cover; background-position: center; }
.ak-rel-card:hover .ak-rel-card-bg { transform: scale(1.05); }
.ak-rel-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(14,14,14,0.88) 100%); }
.ak-rel-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.ak-rel-card-tag { font-family: var(--mono-p); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); margin-bottom: 6px; }
.ak-rel-card-name { font-family: var(--serif-p); font-size: 1.15rem; color: #fff; font-weight: 400; }
.ak-rel-card-loc { font-family: var(--mono-p); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px; }
.ak-rel-card-bar { position: absolute; bottom: 0; left: 0; right: 0; background: var(--terra); padding: 12px 24px; display: flex; justify-content: space-between; align-items: center; transform: translateY(100%); transition: transform 0.4s var(--ease-out); }
.ak-rel-card:hover .ak-rel-card-bar { transform: none; }
.ak-rel-bar-txt { font-family: var(--mono-p); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }

@media (max-width: 1024px) {
  .ak-related-section { padding: 60px 28px; }
  .ak-related-grid { grid-template-columns: 1fr; }
}

/* ── CTA STRIP ──────────────────────────────────────────────────────────── */
.ak-cta-strip { background: var(--terra); padding: 60px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.ak-cs-left h2 { font-family: var(--serif-p); font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; font-weight: 400; line-height: 1.1; margin: 0 0 8px; }
.ak-cs-left h2 em { font-style: italic; opacity: 0.7; }
.ak-cs-left p { font-family: var(--serif-p); font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin:0;}
.ak-cs-actions { display: flex; gap: 12px; flex-shrink: 0; }
.ak-btn-white {
  background: #fff; color: var(--terra); padding: 14px 36px; font-family: var(--mono-p); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.25s, color 0.25s; display: inline-block; border: none;
}
.ak-btn-white:hover { background: var(--paper); color: var(--terra); }
.ak-btn-outline-w {
  border: 1px solid rgba(255,255,255,0.5); color: rgba(255,255,255,0.8); padding: 14px 28px; font-family: var(--mono-p); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: border-color 0.25s, color 0.25s; display: inline-block;
}
.ak-btn-outline-w:hover { border-color: #fff; color: #fff; }

@media (max-width: 1024px) {
  .ak-cta-strip { flex-direction: column; padding: 48px 28px; }
}
@media (max-width: 640px) {
  .ak-cs-actions { flex-direction: column; width: 100%;}
  .ak-btn-white, .ak-btn-outline-w { text-align: center; }
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────────────── */
.ak-reveal {
  opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.ak-reveal.vis { opacity: 1; transform: none; }

/* ── ARCHLINE SUCCESSFUL PROJECTS ───────────────────────────────────────── */
.project-items-one {
  margin-top: 60px;
  background-color: var(--paper-dk);
}
.des-portfolio-wrap .project-items-one:first-child {
  margin-top: 0;
}
@media (max-width: 1399px) {
  .project-items-one { margin-top: 30px; }
  .des-portfolio-wrap .project-items-one:first-child { margin-top: 0; }
}
.project-items-one .thumb { overflow: hidden; position: relative; width: 100%; aspect-ratio: 16/9; max-height: 60vh; }
@media (max-width: 991px) { .project-items-one .thumb { height: auto; max-height: 50vh; } }
.project-items-one .thumb img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  -webkit-transition: all 500ms ease; transition: all 500ms ease;
}
.project-items-one .thumb img:first-child {
  position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2); transform: translate(50%) scaleX(2);
  opacity: 0; -webkit-filter: blur(10px); filter: blur(10px);
}
.project-items-one .content-items {
  margin-top: 15px; display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 991px) {
  .project-items-one .content-items { flex-wrap: wrap; gap: 30px; }
}
.project-items-one .content-items .title-content p { font-size: 14px; margin-bottom: 0; }
.project-items-one .content-items .title-content .title {
  font-size: 24px; font-weight: 400; margin-top: 5px;
}
@media (max-width: 991px) {
  .project-items-one .content-items .title-content .title { font-size: 20px; }
}
.project-items-one .content-items .title-content .title a {
  background-position: 0 95%; background-repeat: no-repeat; background-size: 0% 2px;
  display: inline; text-decoration: none; color: inherit; transition: background-size 0.3s ease;
}
.project-items-one .content-items .title-content .title a:hover {
  color: var(--terra); background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--terra) 0%, var(--terra) 100%);
}
.project-items-one .content-items .location-text-items {
  display: flex; align-items: flex-start; gap: 100px;
}
@media (max-width: 991px) {
  .project-items-one .content-items .location-text-items { gap: 30px; }
}
.project-items-one .content-items .location-text-items .title-content p { margin-bottom: 5px; opacity: 0.6; }
.project-items-one .content-items .location-text-items .title-content h3 { font-size: 18px; margin: 0; font-weight: 500; font-family: var(--serif-p); }
.project-items-one .content-items .text-btn {
  text-decoration: none; color: var(--terra); font-weight: 600; text-transform: uppercase; font-size: 14px;
  display: inline-block; overflow: hidden; vertical-align: bottom; height: 1.2em; line-height: 1.2em;
}
.project-items-one .content-items .text-btn .text {
  display: flex; flex-direction: column; transition: transform 0.3s ease;
}
.project-items-one .content-items .text-btn .text-default,
.project-items-one .content-items .text-btn .text-hover {
  line-height: inherit; height: 1.2em;
}
.project-items-one .content-items .text-btn:hover .text {
  transform: translateY(-50%);
}
.project-items-one:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1); transform: translate(0) scaleX(1);
  opacity: 1; -webkit-filter: blur(0); filter: blur(0);
}
.project-items-one:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2); transform: translateX(-50%) scaleX(2);
  opacity: 0; -webkit-filter: blur(10px); filter: blur(10px);
}
.des-portfolio-panel {
  will-change: transform;
}
.project-btn.mt-85 {
  margin-top: 40px;
  text-align: center;
}
.gt-theme-btn-main {
  background: var(--terra); color: #fff; padding: 14px 32px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity 0.3s ease;
}
.gt-theme-btn-main:hover {
  opacity: 0.8; color: #fff;
}
.gt-theme-btn-arrow-left { display: none; }
