/*
Theme Name: Teimurazov Core
Theme URI: https://teimurazov.local
Author: Teimurazov
Description: Lightweight custom WordPress theme focused on speed, SEO, and clean personal-brand design.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: teimurazov-core
*/

:root {
  --surface: #101a2a;
  --text: #e5dcc8;
  --muted: #b6ab95;
  --brand: #8a6830;
  --brand-2: #caa055;
  --line: #2c374c;
  --heading: #f2ead8;
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --header-height: 78px;
  --header-gap: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable Text", "Segoe UI", "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -8%, rgba(202, 160, 85, 0.16), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(45, 70, 118, 0.26), transparent 42%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.022) 1px, transparent 1.2px),
    repeating-linear-gradient(114deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(32deg, rgba(0, 0, 0, 0.24) 0 2px, transparent 2px 8px),
    linear-gradient(165deg, #05070d 0%, #0b1220 42%, #060a12 100%);
  background-size: auto, auto, 4px 4px, auto, auto, auto;
  line-height: 1.65;
  font-size: 16px;
}

html.wp-toolbar,
body.admin-bar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.admin-bar #wpadminbar {
  inset-block-start: 0;
}

a {
  color: var(--brand-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #d8b46a;
  outline-offset: 2px;
}

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

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.2;
  color: var(--heading);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
}

p {
  margin: 0 0 16px;
}

.container {
  width: min(var(--container), 100% - 40px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0 !important;
  inset-inline: 0;
  margin-top: 0;
  z-index: 40;
  background: rgba(7, 11, 18, 0.98);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(202, 160, 85, 0.18);
  box-shadow: none;
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#content {
  padding-top: calc(var(--header-height) + 1px);
}

.home #content {
  padding-top: 0;
}

.home .hero {
  padding-top: calc(46px + var(--header-gap) + var(--header-height) + 1px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand:hover,
.brand:focus,
.brand:active,
.brand:visited {
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
  min-width: 0;
}

.brand-overline {
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: #b9ab8a;
  font-weight: 600;
}

.brand-title {
  font-family: "Didot", "Bodoni MT", "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(0.95rem, 1.2vw, 1.3rem);
  color: #f1dfb8;
  letter-spacing: 0.06em;
  line-height: 1.04;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(202, 160, 85, 0.18);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-burger {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid rgba(90, 106, 137, 0.75);
  background: rgba(12, 20, 34, 0.9);
  color: #d8cfbc;
  cursor: pointer;
}

.header-burger-lines {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: background-color 0.2s ease;
}

.header-burger-lines::before,
.header-burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.header-burger-lines::before {
  top: -6px;
}

.header-burger-lines::after {
  top: 6px;
}

.header-burger-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.header-burger.is-open .header-burger-lines {
  background: transparent;
}

.header-burger.is-open .header-burger-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.header-burger.is-open .header-burger-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav li {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav li:not(:last-child) {
  padding-right: 14px;
}

.site-nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 4px;
  width: 1px;
  height: 14px;
  background: linear-gradient(180deg, rgba(130, 143, 171, 0), rgba(130, 143, 171, 0.55), rgba(130, 143, 171, 0));
}

.site-nav li:last-child {
  margin-left: 8px;
}

.site-nav a {
  color: #d8cfbc;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--brand-2);
  text-decoration: none;
}

.site-nav a.nav-cta,
.site-nav li:last-child a,
.site-nav a[href*="/consultation/"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  box-sizing: border-box;
  white-space: nowrap;
  border-radius: 999px;
  padding: 8px 18px;
  border: 1px solid rgba(202, 160, 85, 0.55);
  background: linear-gradient(150deg, #7f602f 0%, #c5a15a 100%);
  color: #111522;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.site-nav a.nav-cta:hover,
.site-nav li:last-child a:hover,
.site-nav a[href*="/consultation/"]:hover {
  color: #0c1220;
  text-decoration: none;
  transform: translateY(-1px);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(74, 90, 121, 0.9);
  border-radius: 999px;
  background: rgba(15, 25, 41, 0.9);
  margin-left: 4px;
}

.lang-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #bcc7dc;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.lang-item:hover {
  color: #efe6d2;
  background: rgba(44, 58, 84, 0.7);
  text-decoration: none;
}

.lang-item.is-active {
  color: #ece2cf;
  background: rgba(44, 58, 84, 0.88);
  box-shadow: inset 0 0 0 1px rgba(202, 160, 85, 0.45);
}

.hero {
  position: relative;
  padding: calc(46px + var(--header-gap)) 0 18px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 40%, rgba(29, 64, 142, 0.34), transparent 46%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 34px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(22px, 3.3vw, 52px);
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy--showcase {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.hero-title {
  font-size: clamp(1.85rem, 4.2vw, 3.6rem);
  line-height: 1.06;
  margin-bottom: 14px;
  max-width: 22ch;
  overflow-wrap: anywhere;
}

.home .hero-title {
  margin-bottom: 22px;
}

html[lang^="ka"] .home .hero-title {
  font-size: clamp(1.64rem, 3.7vw, 3.1rem);
  line-height: 1.1;
  max-width: 24ch;
}

.hero-subtitle {
  color: #d6cfbf;
  font-size: clamp(0.98rem, 1.3vw, 1.16rem);
  line-height: 1.5;
  max-width: 40ch;
}

.hero-actions {
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid #49526a;
  background: rgba(18, 27, 44, 0.78);
  font-size: 0.88rem;
  color: #d4cab5;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(140deg, #8d6732 0%, #e0b458 100%);
  color: #111522;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.btn-secondary {
  background: rgba(8, 12, 22, 0.95);
  color: #e8decb;
  border: 1px solid rgba(68, 84, 116, 0.82);
}

.hero-portrait {
  position: relative;
  border-radius: 34px;
  background: linear-gradient(170deg, #1f3170 0%, #172b66 48%, #0f1f50 100%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.48);
  min-height: clamp(330px, 45vw, 500px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: auto 20px -34px;
  height: 70px;
  filter: blur(30px);
  background: rgba(11, 38, 99, 0.75);
  pointer-events: none;
}

.hero-portrait-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 16px;
}

.hero-portrait-image {
  width: auto;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.hero-divider {
  border-top: 1px solid rgba(93, 108, 140, 0.48);
  margin-bottom: 20px;
}

.moment-flow-section {
  padding: 12px 0 30px;
}

.moment-flow-wrap {
  border: 1px solid rgba(202, 160, 85, 0.36);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(18px, 2.2vw, 28px);
  background:
    radial-gradient(circle at 10% 30%, rgba(202, 160, 85, 0.12), transparent 40%),
    radial-gradient(circle at 92% 20%, rgba(44, 71, 122, 0.18), transparent 46%),
    linear-gradient(152deg, rgba(11, 18, 30, 0.95) 0%, rgba(10, 15, 25, 0.95) 100%);
}

.moment-flow-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: thin;
}

.moment-flow-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #f1e6d0;
  font-family: "Didot", "Bodoni MT", "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(1.02rem, 1.8vw, 1.42rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 1px 16px rgba(202, 160, 85, 0.12);
}

.moment-flow-arrow {
  display: inline-block;
  position: relative;
  width: clamp(64px, 8.5vw, 112px);
  height: 16px;
  font-size: 0;
  line-height: 0;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 8px rgba(218, 171, 89, 0.26));
}

.moment-flow-arrow::before,
.moment-flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
}

.moment-flow-arrow::before {
  left: 0;
  right: 16px;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #7e5628 0%, #f0cd90 38%, #d6a55a 68%, #835a2a 100%);
  box-shadow: 0 0 7px rgba(223, 173, 92, 0.32);
}

.moment-flow-arrow::after {
  right: 0;
  width: 16px;
  height: 12px;
  transform: translateY(-50%);
  background: linear-gradient(120deg, #f4d9a4 0%, #d8a860 72%, #9d6f32 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  filter: drop-shadow(0 0 6px rgba(225, 181, 103, 0.34));
}

.path-values-section {
  padding: 8px 0 52px;
}

.path-values-section .container {
  width: min(1320px, 100% - 40px);
}

.path-values-wrap {
  padding: 0;
  background: transparent;
}

.path-values-wrap::before {
  content: none;
}

.path-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.path-values-card {
  position: relative;
  border: 1px solid rgba(60, 86, 122, 0.56);
  border-radius: 6px;
  padding: clamp(26px, 2.4vw, 38px) clamp(22px, 2.2vw, 34px) 30px;
  background: linear-gradient(164deg, rgba(6, 14, 30, 0.985), rgba(3, 9, 21, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 14px 30px rgba(0, 0, 0, 0.36);
  min-height: 336px;
}

.path-values-card::before {
  content: none;
}

.path-values-card::after {
  content: "";
  position: absolute;
  left: clamp(20px, 2.2vw, 36px);
  bottom: 20px;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(72, 96, 136, 0.64), rgba(72, 96, 136, 0.26));
}

.path-values-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 1.55vw, 1.58rem);
  line-height: 1.24;
  letter-spacing: -0.006em;
  font-family: "Didot", "Bodoni MT", "Iowan Old Style", "Palatino Linotype", serif;
  color: #f3e7d2;
  font-weight: 600;
}

.path-values-card p {
  margin: 0;
  color: #c4ae8a;
  line-height: 1.6;
  font-size: clamp(1.02rem, 1.22vw, 1.11rem);
}

.path-values-index {
  position: relative;
  min-width: 58px;
  width: 58px;
  height: 58px;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(208, 171, 99, 0.52);
  background: radial-gradient(circle at 30% 22%, rgba(222, 188, 124, 0.22), rgba(10, 20, 40, 0.96) 56%, rgba(6, 14, 30, 0.99));
  color: transparent;
  font-size: 0;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 0 3px rgba(210, 171, 97, 0.08), 0 10px 20px rgba(0, 0, 0, 0.28);
}

.path-values-index::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.path-values-card:nth-child(1) .path-values-index::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8ae68' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4.7l2.3 5 5 2.3-5 2.3-2.3 5-2.3-5-5-2.3 5-2.3 2.3-5z'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23f2e2c6' stroke='none'/%3E%3C/svg%3E");
}

.path-values-card:nth-child(2) .path-values-index::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8ae68' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 6h7'/%3E%3Cpath d='M6 12h11'/%3E%3Cpath d='M6 18h5'/%3E%3Ccircle cx='15.5' cy='6' r='2'/%3E%3Ccircle cx='19' cy='12' r='2'/%3E%3Ccircle cx='13' cy='18' r='2'/%3E%3C/svg%3E");
}

.path-values-card:nth-child(3) .path-values-index::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8ae68' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5' cy='6' r='2'/%3E%3Cpath d='M7 6H12Q15 6 15 9Q15 12 12 12H10Q7 12 7 15Q7 18 10 18H18'/%3E%3Ccircle cx='20' cy='18' r='2' fill='%23d8ae68' stroke='none'/%3E%3C/svg%3E");
}

.how-we-work-section {
  padding: 14px 0 56px;
}

.how-we-work-section .container {
  width: min(1320px, 100% - 40px);
}

.how-we-work-head {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 900px;
}

.how-we-work-eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #d2ab67;
}

.how-we-work-title {
  margin: 0;
  font-size: clamp(2.2rem, 5.2vw, 4.55rem);
  line-height: 0.94;
  letter-spacing: -0.012em;
  font-family: "Didot", "Bodoni MT", "Iowan Old Style", "Palatino Linotype", serif;
  font-weight: 500;
  color: #f4e9d3;
}

.how-we-work-subtitle {
  margin: 14px 0 0;
  font-size: clamp(1.22rem, 2vw, 2rem);
  color: #cdb893;
  line-height: 1.3;
}

.how-we-work-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.76fr);
  border: 1px solid rgba(88, 111, 151, 0.52);
  border-radius: 30px;
  background: linear-gradient(138deg, rgba(8, 21, 45, 0.96), rgba(4, 12, 30, 0.98));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.how-we-work-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(202, 160, 85, 0.16), transparent 46%),
    radial-gradient(circle at 88% 82%, rgba(87, 113, 161, 0.24), transparent 48%);
}

.how-we-work-intro,
.how-we-work-with-me {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 3.4vw, 54px);
}

.how-we-work-with-me {
  border-left: 1px solid rgba(88, 111, 151, 0.46);
  padding-left: clamp(34px, 3.2vw, 52px);
  padding-right: clamp(20px, 2vw, 30px);
}

.how-we-work-intro-title {
  margin: 0;
  font-size: clamp(1.56rem, 2.22vw, 2.64rem);
  line-height: 1.22;
  color: #f5ead4;
  max-width: none;
}

.how-we-work-intro-lead {
  margin: 24px 0 0;
  font-size: clamp(1.36rem, 1.9vw, 2rem);
  font-weight: 500;
  color: #e7d4b1;
  line-height: 1.4;
}

.how-we-work-highlight {
  color: #e0b35f;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(224, 179, 95, 0.2);
}

.how-we-work-intro-text {
  margin: 16px 0 0;
  color: #bdaa8b;
  line-height: 1.58;
  max-width: 52ch;
  font-size: 1.05rem;
}

.how-we-work-approach {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(86, 109, 147, 0.42);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 490px;
}

.how-we-work-approach-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(121, 150, 194, 0.58);
  background: linear-gradient(150deg, rgba(29, 48, 83, 0.94), rgba(13, 23, 44, 0.95));
  box-shadow: inset 0 0 0 1px rgba(210, 171, 97, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.how-we-work-approach-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23efe0c5' d='M19.14 12.94c.04-.31.06-.63.06-.94s-.02-.63-.07-.94l2.03-1.58a.48.48 0 0 0 .12-.61l-1.92-3.32a.47.47 0 0 0-.57-.2l-2.39.96c-.5-.38-1.05-.69-1.66-.92L14.46 2.5a.46.46 0 0 0-.45-.38H9.99a.46.46 0 0 0-.45.38L9.2 5.39c-.61.23-1.17.54-1.66.92l-2.39-.96a.47.47 0 0 0-.57.2L2.66 8.87a.48.48 0 0 0 .12.61l2.03 1.58c-.05.31-.08.65-.08.94s.03.63.08.94l-2.03 1.58a.48.48 0 0 0-.12.61l1.92 3.32c.11.2.36.28.57.2l2.39-.96c.49.38 1.05.69 1.66.92l.34 2.89c.03.22.22.38.45.38h4.02c.23 0 .42-.16.45-.38l.34-2.89c.61-.23 1.16-.54 1.66-.92l2.39.96c.21.08.46 0 .57-.2l1.92-3.32a.48.48 0 0 0-.12-.61l-2.02-1.58zM12 15.5a3.5 3.5 0 1 1 0-7a3.5 3.5 0 0 1 0 7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.how-we-work-approach-copy {
  display: grid;
  gap: 2px;
}

.how-we-work-approach-label {
  color: #c8b796;
  font-size: 1.04rem;
  line-height: 1.2;
}

.how-we-work-approach-value {
  color: #f4e8d4;
  font-size: clamp(1.3rem, 1.9vw, 1.98rem);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.how-we-work-with-me-title {
  margin: 4px 0 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.1;
  color: #f4e8d2;
}

.how-we-work-with-me-title::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(210, 171, 97, 0.2), rgba(210, 171, 97, 0.95));
}

.how-we-work-list + .how-we-work-list {
  margin-top: 26px;
}

.how-we-work-list h4 {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.how-we-work-list h4::before {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.how-we-work-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.how-we-work-list li {
  position: relative;
  padding-left: 24px;
  font-size: clamp(1.04rem, 1.48vw, 1.14rem);
  color: #ccbc9f;
  line-height: 1.46;
}

.how-we-work-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.how-we-work-list--negative h4 {
  color: #e0a4a7;
}

.how-we-work-list--negative h4::before {
  content: "\00d7";
}

.how-we-work-list--negative li::before {
  background: #ff6f7e;
  box-shadow: 0 0 10px rgba(255, 111, 126, 0.4);
}

.how-we-work-list--positive h4 {
  color: #45db8a;
}

.how-we-work-list--positive h4::before {
  content: "\2713";
}

.how-we-work-list--positive li {
  color: #f2e7d5;
}

.how-we-work-list--positive li::before {
  background: #4bf29b;
  box-shadow: 0 0 10px rgba(75, 242, 155, 0.45);
}

html[lang^="ka"] .how-we-work-intro-title {
  font-size: clamp(1.18rem, 3.5vw, 2.1rem);
  line-height: 1.26;
}

html[lang^="ka"] .how-we-work-approach-value {
  font-size: clamp(0.94rem, 3.5vw, 1.2rem);
}


.section {
  padding: 34px 0;
}

.section-head {
  margin-bottom: 20px;
}

.section-head p {
  color: var(--muted);
  max-width: 70ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.card p {
  color: #bdb29a;
  margin-bottom: 0;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.about-box,
.cta-box {
  background: #0f1828;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.cta-box {
  background: linear-gradient(140deg, #181a1e 0%, #1d2636 55%, #121a28 100%);
}

.content-page {
  padding: 38px 0 54px;
}

.entry {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 34px);
}

.entry-meta {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.contact-strip {
  margin-top: 34px;
  padding: 16px 0;
  border-top: 1px solid rgba(202, 160, 85, 0.24);
  border-bottom: 1px solid rgba(202, 160, 85, 0.24);
}

.contact-strip .container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  color: #cdc2ab;
}

.site-footer {
  padding: 18px 0 30px;
  color: #a79c87;
  font-size: 0.9rem;
  border-top: 1px solid rgba(202, 160, 85, 0.22);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  color: #b6aa93;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.footer-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(95, 112, 146, 0.7);
  background: rgba(12, 20, 34, 0.86);
  color: #ddd0b8;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover {
  border-color: rgba(210, 170, 98, 0.78);
  background: rgba(18, 28, 46, 0.95);
  transform: translateY(-1px);
  text-decoration: none;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.signature-projects-section {
  padding: 0 0 56px;
}

.home-final-cta {
  padding: 0 0 64px;
}

.home-final-cta-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(111, 132, 170, 0.44);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 9% 18%, rgba(202, 160, 85, 0.15), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(82, 122, 188, 0.16), transparent 46%),
    linear-gradient(150deg, rgba(10, 18, 32, 0.94), rgba(8, 14, 26, 0.97));
  padding: clamp(20px, 2.9vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.95fr);
  gap: clamp(16px, 2vw, 24px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  align-items: stretch;
}

.home-final-cta-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, rgba(211, 170, 94, 0.9), rgba(211, 170, 94, 0));
  pointer-events: none;
}

.home-final-cta-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 8px);
}

.home-final-cta-copy,
.home-final-cta-card {
  position: relative;
  z-index: 1;
}

.home-final-cta-copy {
  padding-right: clamp(8px, 1.9vw, 24px);
  border-right: 1px solid rgba(96, 117, 152, 0.5);
  display: grid;
  align-content: start;
}

.home-final-cta-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.72rem, 3.2vw, 3rem);
  line-height: 1.08;
  color: #f4e9d4;
}

.home-final-cta-description {
  margin: 0;
  color: #e5d7be;
  line-height: 1.54;
  max-width: 42ch;
  font-size: clamp(1.02rem, 1.3vw, 1.14rem);
}

.home-final-cta-purpose {
  margin: 22px 0 0;
  color: #cdbf9f;
  line-height: 1.66;
  font-size: 0.92rem;
  max-width: 52ch;
}

.home-final-cta-card {
  border: 1px solid rgba(95, 122, 168, 0.45);
  border-radius: 16px;
  background: linear-gradient(156deg, rgba(17, 32, 57, 0.94), rgba(12, 24, 44, 0.95));
  padding: clamp(18px, 2vw, 28px) clamp(16px, 1.6vw, 24px);
  display: grid;
  gap: 10px;
  align-content: start;
  height: 100%;
  text-align: center;
}

.home-final-cta-metric {
  margin-top: 14px;
  min-height: 0;
  border: 1px solid rgba(68, 93, 133, 0.52);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(9, 19, 35, 0.86);
  display: flex;
  justify-content: center;
}

.home-final-cta-metric--followup {
  border-color: rgba(76, 102, 148, 0.5);
  background: rgba(8, 18, 34, 0.92);
}

.home-final-cta-followup-text {
  display: block;
  margin-top: 14px;
  color: #d6ccb8;
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  white-space: pre-line;
}

.home-final-cta-price-label {
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: #d4ba8b;
}

.home-final-cta-price-value {
  display: block;
  margin-top: 2px;
  color: #f4e8cd;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.94;
  font-weight: 500;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.home-final-cta-duration-pill {
  margin: 4px auto 0;
  padding: 7px 14px 7px 32px;
  border-radius: 999px;
  border: 1px solid rgba(94, 118, 156, 0.56);
  background: rgba(11, 23, 42, 0.92);
  color: #f3e8d3;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  position: relative;
}

.home-final-cta-duration-pill::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #d6a95f;
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(214, 169, 95, 0.2);
}

.home-final-cta-duration-pill::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-right: 2px solid #d6a95f;
  border-bottom: 2px solid #d6a95f;
  transform: translate(-50%, -70%) rotate(45deg);
}

.home-final-cta-includes h3 {
  margin: 22px 0 10px;
  font-size: 0.96rem;
  color: #d2ad67;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-final-cta-includes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.home-final-cta-includes li {
  position: relative;
  padding-left: 28px;
  color: #ece1ca;
  line-height: 1.44;
  font-size: 1rem;
}

.home-final-cta-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(110, 198, 155, 0.56);
  background: rgba(17, 77, 56, 0.54);
  box-shadow: inset 0 0 0 5px rgba(101, 192, 143, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-final-cta-btn {
  width: 100%;
  align-self: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 18px;
  padding: 13px 14px;
  border-radius: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  box-shadow:
    0 12px 24px rgba(9, 8, 5, 0.35),
    inset 0 1px 0 rgba(247, 226, 180, 0.32);
}

.home-final-cta-security-note {
  margin: 4px 0 0;
  color: #99a3b9;
  font-size: 0.88rem;
  line-height: 1.35;
}

.signature-projects-head {
  margin-bottom: 18px;
}

.signature-projects-head p {
  max-width: 80ch;
}

.project-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-thumb-link {
  display: block;
}

.project-card--mini .project-card-body {
  padding: 14px;
}

.project-card-title {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.project-card-title a {
  color: inherit;
  text-decoration: none;
}

.project-card-title a:hover {
  text-decoration: underline;
}

.project-card--mini p {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-link::after {
  content: "->";
  font-size: 0.68rem;
}

.signature-projects-fallback {
  margin: 14px 0 0;
  color: #a7977a;
  font-size: 0.92rem;
}

.signature-projects-actions {
  margin-top: 18px;
}

.project-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-thumb-empty {
  background: linear-gradient(145deg, #1a2235 0%, #101a2c 100%);
}

.project-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.project-card h2 {
  margin-bottom: 10px;
}

.project-card p {
  color: var(--muted);
}

.project-link,
.project-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.project-single {
  max-width: 900px;
  margin: 0 auto;
}

.project-single--guided {
  padding: clamp(22px, 2.8vw, 34px);
}

.project-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-bottom: 14px;
}

.project-hero-copy h1 {
  margin-bottom: 12px;
}

.project-lead {
  margin: 0;
  color: #d8cebb;
  font-size: clamp(1rem, 1.24vw, 1.1rem);
  line-height: 1.6;
  max-width: 62ch;
}

.project-result-card {
  border: 1px solid rgba(95, 186, 132, 0.52);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(22, 58, 46, 0.92) 0%, rgba(16, 43, 35, 0.95) 100%);
  padding: 14px 14px 12px;
  box-shadow: inset 0 0 0 1px rgba(126, 225, 164, 0.12);
}

.project-result-card h2 {
  margin: 0 0 6px;
  font-size: 0.96rem;
}

.project-result-card p {
  margin: 0;
  color: #d7f1df;
  font-size: 0.93rem;
  line-height: 1.52;
}

.project-facts {
  margin: 0 0 14px;
}

.project-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.project-fact-grid--side {
  grid-template-columns: 1fr;
}

.project-fact {
  border: 1px solid rgba(74, 99, 143, 0.5);
  background: linear-gradient(145deg, rgba(11, 25, 49, 0.9), rgba(10, 19, 38, 0.9));
  border-radius: 14px;
  padding: 10px 12px 11px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-fact-label {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #99aac8;
  margin-bottom: 4px;
}

.project-fact-value {
  display: block;
  color: #ecdebf;
  font-size: 0.86rem;
  line-height: 1.34;
}

.project-cover .project-thumb {
  aspect-ratio: auto;
  border-radius: var(--radius-sm);
}

.project-cover-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 14px;
  align-items: start;
  margin: 4px 0 18px;
}

.project-cover--compact .project-thumb {
  aspect-ratio: 16 / 10;
}

.project-reading-path {
  position: relative;
  margin: 18px 0 22px;
}

.project-reading-path::before {
  display: none;
}

.project-step {
  display: block;
  padding: 0;
}

.project-step + .project-step {
  margin-top: 8px;
}

.project-step-index {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(85, 106, 143, 0.75);
  background: #0f1f3b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d2c4a2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.project-step-body h2 {
  margin: 0 0 6px;
  font-size: 1.12rem;
}

.project-step-body p {
  margin: 0;
  color: #d0c7b4;
  line-height: 1.72;
  max-width: 70ch;
}

.project-step--highlight .project-step-index {
  border-color: rgba(95, 186, 132, 0.8);
  background: #183629;
  color: #ccf0d9;
}

.project-block {
  margin: 0 0 20px;
}

.project-block h2 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.project-block p {
  margin: 0;
  color: var(--muted);
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.project-block--gallery h2 {
  margin-bottom: 10px;
}

.project-contact-cta {
  margin-top: 24px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(203, 167, 96, 0.5);
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 165, 96, 0.2), transparent 44%),
    linear-gradient(145deg, rgba(26, 20, 11, 0.92), rgba(42, 29, 15, 0.9));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.project-contact-cta-copy h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.project-contact-cta-copy p {
  margin: 0;
  color: #e2d4b9;
  line-height: 1.6;
  max-width: 64ch;
}

.project-contact-cta-btn {
  white-space: nowrap;
}

.project-gallery-item {
  display: block;
}

.project-gallery-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.project-page-v2 {
  position: relative;
}

.project-single--immersive {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.project-single--immersive.entry {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.project-single--immersive .entry-meta {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.project-hero-v2 {
  max-width: 980px;
}

.project-hero-v2 h1 {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 5.6vw, 5.2rem);
  line-height: 1;
  color: #f5ebd7;
}

.project-hero-v2-subtitle {
  margin: 0;
  max-width: 68ch;
  color: #d2c8b4;
  font-size: clamp(1.05rem, 1.7vw, 1.65rem);
  line-height: 1.5;
}

.project-showcase-v2 {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(88, 121, 177, 0.42);
  background: #091326;
  box-shadow:
    inset 0 1px 0 rgba(236, 219, 181, 0.12),
    0 24px 42px rgba(0, 0, 0, 0.34);
}

.project-showcase-v2::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(3, 8, 17, 0), rgba(3, 8, 17, 0.84));
  pointer-events: none;
}

.project-showcase-v2-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-story-v2 {
  max-width: 920px;
}

.project-story-v2 h2 {
  margin-bottom: 12px;
}

.project-story-v2-copy p {
  margin: 0;
  color: #d2c8b6;
  line-height: 1.78;
  font-size: clamp(1rem, 1.22vw, 1.2rem);
}

.project-story-v2-copy p::first-letter {
  float: left;
  margin-right: 10px;
  color: #d6a95f;
  font-size: 2.2em;
  line-height: 0.88;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.project-methodology-v2 h2 {
  margin-bottom: 10px;
}

.project-methodology-v2-intro {
  max-width: 76ch;
  margin: 0 0 14px;
  color: #d3c9b6;
  line-height: 1.7;
}

.project-methodology-v2-panel {
  border: 1px solid rgba(90, 125, 180, 0.42);
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 26px);
  background:
    radial-gradient(circle at 95% 10%, rgba(198, 157, 90, 0.16), transparent 36%),
    linear-gradient(150deg, rgba(9, 26, 52, 0.94), rgba(8, 20, 40, 0.95));
}

.project-methodology-v2-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.project-methodology-v2-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.project-methodology-v2-index {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(214, 169, 95, 0.6);
  color: #d6a95f;
  background: rgba(2, 10, 22, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.project-methodology-v2-item-body h3 {
  margin: 0 0 4px;
  font-size: clamp(1.04rem, 1.52vw, 1.42rem);
}

.project-methodology-v2-item-body p {
  margin: 0;
  color: #cec3af;
  line-height: 1.66;
}

.project-benefits-v2 {
  margin-top: 22px;
}

.project-benefits-v2 h2 {
  margin-bottom: 18px;
}

.project-benefits-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-benefit-v2-card {
  position: relative;
  overflow: visible;
  border-radius: 18px;
  border: 1px solid rgba(206, 166, 93, 0.44);
  background:
    radial-gradient(circle at 12% -12%, rgba(214, 168, 90, 0.2), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(76, 113, 172, 0.24), transparent 44%),
    linear-gradient(154deg, rgba(11, 26, 50, 0.98), rgba(7, 17, 33, 0.98));
  padding: 56px 24px 24px;
  min-height: 230px;
  box-shadow:
    inset 0 1px 0 rgba(245, 224, 183, 0.2),
    0 18px 34px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.project-benefit-v2-card::after {
  content: "";
  position: absolute;
  inset: auto 22% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 90, 0.58), transparent);
}

.project-benefit-v2-card h3 {
  margin: 2px 0 10px;
  font-size: clamp(1.14rem, 1.5vw, 1.48rem);
}

.project-benefit-v2-card p {
  margin: 0;
  color: #d5c9b4;
  line-height: 1.64;
}

.project-benefit-v2-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  border: 1px solid rgba(220, 176, 100, 0.7);
  background: radial-gradient(circle at 30% 25%, #dcb66f, #8f6b31 76%);
  box-shadow:
    0 12px 20px rgba(0, 0, 0, 0.36),
    0 0 0 4px rgba(8, 21, 41, 0.9);
}

.project-benefit-v2-icon::before,
.project-benefit-v2-icon::after {
  content: "";
  position: absolute;
}

.project-benefit-v2-icon::before {
  width: 17px;
  height: 9px;
  border-left: 3px solid #f9ecd0;
  border-bottom: 3px solid #f9ecd0;
  left: 19px;
  top: 21px;
  transform: rotate(-45deg);
  z-index: 2;
}

.project-benefit-v2-icon::after {
  inset: 7px;
  border-radius: 50%;
  border: 1px solid rgba(248, 228, 187, 0.44);
}

.project-process-v2 {
  margin-top: 6px;
}

.project-process-v2-head {
  margin-bottom: 16px;
  text-align: center;
}

.project-process-v2-head p {
  margin: 0 0 4px;
  color: #d7ab62;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

html[lang^="ru"] .project-single--immersive .entry-meta,
html[lang^="ka"] .project-single--immersive .entry-meta,
html[lang^="ru"] .project-process-v2-head p,
html[lang^="ka"] .project-process-v2-head p {
  letter-spacing: 0.08em;
}

.project-process-v2-head h2 {
  margin: 0;
}

.project-process-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.project-process-v2-card {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(72, 105, 160, 0.42);
  min-height: 320px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.project-process-v2-card:nth-child(2) {
  transform: translateY(40px);
}

.project-process-v2-card:nth-child(3) {
  transform: translateY(12px);
}

.project-process-v2-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.project-contact-cta--v2 {
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .project-benefits-v2-grid,
  .project-process-v2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-process-v2-card:nth-child(2),
  .project-process-v2-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .project-single--immersive {
    gap: 22px;
  }

  .project-benefits-v2-grid,
  .project-process-v2-grid {
    grid-template-columns: 1fr;
  }

  .project-process-v2-card {
    min-height: 280px;
  }

  .project-process-v2-image {
    min-height: 280px;
  }

  .project-contact-cta--v2 {
    grid-template-columns: 1fr;
  }
}

.about-layout,
.consult-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.consultation-page .consult-layout {
  grid-template-columns: 1fr;
}

.consultation-page.entry {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.consultation-page .consult-main {
  width: 100%;
  max-width: 1200px;
}

.consult-important {
  margin: 6px 0 30px;
}

.consult-important-head {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.consult-important-head h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.consult-important-head p {
  margin: 0;
  color: #cfc4af;
  line-height: 1.55;
}

.consult-important-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.consult-important-card {
  position: relative;
  min-height: 292px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(91, 121, 175, 0.42);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(11, 25, 48, 0.94), rgba(9, 18, 36, 0.96));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.consult-important-number {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(83, 112, 165, 0.56);
  background: rgba(6, 12, 24, 0.92);
  color: #d4a960;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.consult-important-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.25rem, 1.9vw, 2rem);
  color: #efe2ca;
}

.consult-important-card p {
  margin: 0;
  color: #c8bca6;
  line-height: 1.52;
}

.consult-accent-meet {
  color: #9ecaa5;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(124, 185, 134, 0.16);
}

.consult-accent-deadline {
  color: #d7a0a0;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(157, 83, 83, 0.14);
}

.consult-important-card p + p {
  margin-top: 6px;
}

.consult-important-card--highlight {
  border-color: rgba(206, 168, 97, 0.54);
}

.consult-important-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 14px;
  border-radius: 0 20px 0 12px;
  background: linear-gradient(145deg, #cda258 0%, #8f6d35 100%);
  color: #f9efdd;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.consult-important-price-amount {
  color: #dcb16b;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(208, 163, 90, 0.16);
}

.about-side,
.consult-side {
  background: #111b2c;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  height: fit-content;
}

.about-side h2,
.consult-side h2 {
  margin-bottom: 12px;
}

.about-side ul {
  margin: 0;
  padding-left: 18px;
}

.about-page--story {
  position: relative;
  overflow: visible;
  background: transparent;
}

.about-page.about-page--story {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.about-page--story::before {
  display: none;
}

.about-hero,
.about-layout--enhanced,
.about-beyond {
  position: relative;
  z-index: 1;
}

.about-hero {
  margin-bottom: clamp(30px, 4vw, 56px);
}

.about-hero-copy {
  min-width: 0;
  max-width: 700px;
}

.about-hero-inner {
  align-items: center;
  gap: clamp(24px, 3.3vw, 56px);
}

.about-hero .hero-title {
  margin-bottom: 12px;
  text-wrap: balance;
}

.about-lead {
  margin: 0;
  color: #d3c7b0;
  line-height: 1.72;
  max-width: 66ch;
}

.about-hero-portrait {
  min-height: clamp(320px, 44vw, 500px);
}

.about-layout--enhanced {
  align-items: start;
  margin-bottom: clamp(28px, 3vw, 40px);
  gap: clamp(24px, 3vw, 46px);
  grid-template-columns: 1fr;
}

.about-main {
  display: grid;
  gap: clamp(30px, 3vw, 46px);
}

.about-principles-flow {
  position: static;
  align-self: start;
  padding: 0 0 0 20px;
  border-left: 1px solid rgba(206, 168, 97, 0.24);
}

.about-principles-track {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.about-principles-word {
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 95, 0.42);
  background: linear-gradient(160deg, rgba(18, 27, 44, 0.88), rgba(11, 18, 30, 0.82));
  color: #ead9ba;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
}

.about-principles-connector {
  flex: 0 0 26px;
  width: 2px;
  min-height: 26px;
  height: 26px;
  margin: 8px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(209, 171, 101, 0.95), rgba(209, 171, 101, 0.34));
}

.about-principles-connector::after {
  display: none;
}

.about-section--approach {
  padding-right: 0;
}

.about-approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

.about-approach-copy {
  min-width: 0;
}

.about-principles-flow--compact .about-principles-word {
  min-width: 148px;
}

.about-page--story .about-side {
  position: relative;
  background: linear-gradient(160deg, rgba(10, 18, 31, 0.36), rgba(9, 16, 27, 0.08));
  border: 0;
  border-radius: 0;
  padding: 18px 0 16px 28px;
  border-left: 1px solid rgba(206, 168, 97, 0.26);
}

.about-section {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 30px 30px;
}

.about-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 1px;
  height: calc(100% - 12px);
  background: linear-gradient(180deg, rgba(213, 173, 102, 0.5), rgba(213, 173, 102, 0));
}

.about-section:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(206, 168, 97, 0.32), rgba(206, 168, 97, 0));
}

.about-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.34rem, 2vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #f2e4cb;
}

.about-section h3 {
  margin: 16px 0 10px;
  font-size: 1.04rem;
  color: #e7dbc4;
}

.about-section p {
  margin: 0;
  color: #cfc2ab;
  line-height: 1.74;
  max-width: 72ch;
}

.about-bullets {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-inline-note {
  margin-top: 14px;
  color: #d9caaf;
  font-size: 0.94rem;
  line-height: 1.55;
}

.about-bullets li {
  position: relative;
  padding-left: 24px;
  color: #cfc1a8;
  line-height: 1.58;
}

.about-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0d29c 0%, #7ecfa4 100%);
  box-shadow: 0 0 14px rgba(231, 191, 114, 0.22);
}

.about-timeline {
  margin: 14px 0 0;
  padding: 0 0 0 16px;
  list-style: none;
  display: grid;
  gap: 18px;
  position: relative;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 10px;
  left: 6px;
  width: 1px;
  background: linear-gradient(180deg, rgba(207, 170, 102, 0.55), rgba(207, 170, 102, 0.08));
}

.about-timeline li {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 14px;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.about-timeline li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9b072;
  box-shadow: 0 0 0 3px rgba(217, 176, 114, 0.15);
}

.about-timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 164, 95, 0.44);
  background: linear-gradient(165deg, rgba(21, 30, 46, 0.85), rgba(13, 20, 33, 0.76));
  color: #f1ddb8;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1;
}

.about-timeline li p {
  margin: 4px 0 0;
  color: #cbc0ab;
  line-height: 1.66;
}

.about-side--profile {
  border: 0;
  background: transparent;
  position: sticky;
  top: 108px;
}

.about-side--profile h2 {
  margin: 0 0 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d8c7a8;
}

.about-side-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.about-side-points li {
  position: relative;
  padding-left: 20px;
  color: #d6c9b1;
  line-height: 1.5;
}

.about-side-points li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #87d6aa;
  font-weight: 700;
}

.about-beyond h2 {
  margin-bottom: 18px;
}

.about-beyond-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px clamp(20px, 2.2vw, 30px);
}

.about-beyond-card {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 4px 0 24px;
}

.about-beyond-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 1px;
  height: calc(100% - 8px);
  background: linear-gradient(180deg, rgba(128, 206, 164, 0.7), rgba(128, 206, 164, 0));
}

.about-beyond-media {
  margin: 0 0 12px;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(155deg, rgba(23, 35, 58, 0.82), rgba(12, 20, 35, 0.88));
  border: 1px solid rgba(102, 125, 163, 0.34);
}

.about-beyond-media.is-empty {
  border-style: dashed;
  border-color: rgba(206, 168, 97, 0.38);
}

.about-beyond-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-beyond-placeholder {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #d7c8ad;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(202, 160, 85, 0.18), transparent 42%),
    linear-gradient(150deg, rgba(14, 24, 40, 0.8), rgba(11, 19, 33, 0.92));
}

.about-beyond-card h3 {
  margin: 0 0 9px;
  font-size: 1.06rem;
  color: #efe0c5;
}

.about-beyond-card p {
  margin: 0;
  color: #cfc2ac;
  line-height: 1.68;
}
.consult-booking {
  margin: 38px 0 20px;
}

.consult-booking-head {
  margin-bottom: 24px;
  text-align: center;
}

.consult-booking-head h1,
.consult-booking-head h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.consult-booking-head p {
  margin: 0 auto;
  color: #cfc4af;
  line-height: 1.54;
  max-width: 64ch;
}

.consult-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  grid-template-areas:
    "calendar side"
    "prep side";
  gap: 18px;
  align-items: start;
}

.consult-booking-calendar-col {
  grid-area: calendar;
}

.consult-booking-calendar {
  border: 1px solid rgba(86, 113, 163, 0.52);
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(165deg, rgba(12, 26, 49, 0.9), rgba(9, 20, 39, 0.96));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.consult-booking-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.consult-booking-calendar-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.consult-booking-calendar-month {
  margin: 0;
  min-width: 0;
  font-size: clamp(1.15rem, 1.4vw, 1.6rem);
  letter-spacing: 0.01em;
  color: #efe2ca;
  font-weight: 700;
}

.consult-month-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(95, 122, 173, 0.52);
  background: rgba(14, 25, 43, 0.98);
  color: #efe2cc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.consult-month-nav-btn:hover:not(:disabled) {
  border-color: rgba(202, 160, 85, 0.82);
  background: rgba(24, 39, 63, 0.96);
  transform: translateY(-1px);
}

.consult-month-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.consult-booking-calendar-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.consult-calendar-weekday-head {
  text-align: center;
  font-size: 0.73rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #bbaa86;
  font-weight: 700;
}

.consult-calendar-spacer {
  min-height: 1px;
}

.consult-calendar-day {
  border: 1px solid rgba(69, 93, 136, 0.42);
  background: rgba(7, 15, 28, 0.86);
  border-radius: 10px;
  min-height: 60px;
  padding: 8px 6px 7px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  color: #e9dcc5;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.consult-calendar-day:hover:not(:disabled) {
  border-color: rgba(202, 160, 85, 0.78);
  transform: translateY(-1px);
}

.consult-calendar-day.is-selected {
  border-color: #d4a960;
  box-shadow:
    0 0 0 1px rgba(212, 169, 96, 0.34) inset,
    0 10px 24px rgba(15, 9, 2, 0.45);
  background: rgba(176, 138, 72, 0.92);
  color: #11161f;
}

.consult-calendar-day.is-disabled {
  opacity: 0.38;
  cursor: default;
  background: rgba(12, 20, 32, 0.7);
}

.consult-calendar-day.is-unavailable {
  border-style: dashed;
  border-color: rgba(102, 117, 146, 0.42);
  background: rgba(13, 22, 36, 0.86);
  opacity: 0.72;
}

.consult-calendar-day.has-slots {
  border-color: rgba(110, 192, 152, 0.42);
  box-shadow: inset 0 0 0 1px rgba(110, 192, 152, 0.14);
}

.consult-calendar-weekday {
  display: none;
}

.consult-calendar-date {
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1;
}

.consult-calendar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(115, 184, 153, 0.12);
  box-shadow: inset 0 0 0 1px rgba(115, 184, 153, 0.24);
}

.consult-calendar-day.has-slots .consult-calendar-dot {
  background: #72c89e;
  box-shadow:
    0 0 0 1px rgba(114, 200, 158, 0.2),
    0 0 8px rgba(114, 200, 158, 0.44);
}

.consult-calendar-day.is-unavailable .consult-calendar-dot,
.consult-calendar-day.is-disabled .consult-calendar-dot {
  opacity: 0;
}

.consult-calendar-legend {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
}

.consult-calendar-legend-item {
  position: relative;
  padding-left: 16px;
  font-size: 0.86rem;
  color: #c8bca6;
  letter-spacing: 0.03em;
}

.consult-calendar-legend-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(146, 160, 189, 0.28);
}

.consult-calendar-legend-item.is-available::before {
  background: #72c89e;
  box-shadow: 0 0 8px rgba(114, 200, 158, 0.42);
}

.consult-calendar-legend-item.is-selected::before {
  background: #d0a35a;
  box-shadow: 0 0 10px rgba(208, 163, 90, 0.6);
}

.consult-calendar-legend-item.is-empty::before {
  background: rgba(114, 131, 164, 0.5);
}

.consult-calendar-legend-item.is-blocked::before {
  background: rgba(123, 131, 149, 0.35);
  border: 1px dashed rgba(160, 170, 190, 0.64);
}

.consult-prep-card {
  grid-area: prep;
  border: 1px solid rgba(84, 111, 162, 0.48);
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(165deg, rgba(10, 22, 41, 0.9), rgba(9, 18, 33, 0.94));
}

.consult-prep-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  color: #efe2ca;
}

.consult-prep-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.consult-prep-list li {
  position: relative;
  padding-left: 20px;
  color: #cdc0a8;
  line-height: 1.45;
}

.consult-prep-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a960 0%, #7ab594 100%);
  box-shadow: 0 0 8px rgba(122, 181, 148, 0.24);
}

.consult-booking-meta {
  margin: 6px 0 0;
  color: #b2a894;
  font-size: 0.8rem;
}

.consult-booking-side {
  grid-area: side;
  display: grid;
  gap: 14px;
}

.consult-booking-slots-panel,
.consult-booking-form {
  border: 1px solid rgba(84, 111, 162, 0.48);
  border-radius: 18px;
  padding: 18px;
}

.consult-booking-slots-panel {
  background:
    radial-gradient(circle at 14% 8%, rgba(78, 124, 214, 0.16), transparent 52%),
    rgba(12, 25, 46, 0.9);
}

.consult-booking-form {
  background: linear-gradient(165deg, rgba(11, 24, 44, 0.9), rgba(9, 19, 36, 0.94));
}

.consult-booking-slots-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.consult-booking-slots-panel h3,
.consult-booking-form h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.7vw, 2rem);
}

.consult-slots-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(76, 197, 132, 0.34);
  background: rgba(20, 67, 49, 0.5);
  color: #8ef3ba;
  font-size: clamp(0.78rem, 2.6vw, 0.95rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.consult-slot-list {
  min-height: 84px;
  margin-top: 12px;
}

.consult-slot-day-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.consult-slot-btn {
  appearance: none;
  border: 1px solid rgba(94, 119, 168, 0.5);
  background: rgba(7, 15, 28, 0.92);
  color: #e8dbc3;
  border-radius: 14px;
  min-height: 52px;
  padding: 11px 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.08rem;
  line-height: 1;
}

.consult-slot-btn:hover {
  border-color: rgba(202, 160, 85, 0.75);
  background: rgba(24, 38, 61, 0.95);
  transform: translateY(-1px);
}

.consult-slot-btn.is-active {
  border-color: #d2a55d;
  box-shadow:
    0 0 0 1px rgba(210, 165, 93, 0.35) inset,
    0 8px 20px rgba(22, 16, 9, 0.4);
  background: rgba(44, 34, 20, 0.92);
  color: #f2cb84;
}

.consult-booking-form {
  display: grid;
  gap: 14px;
}

.consult-selected-slot {
  margin: 0;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(90, 113, 149, 0.4);
  background: rgba(10, 19, 34, 0.62);
  color: #cabda5;
  font-size: 0.9rem;
}

.consult-selected-slot strong {
  color: #efe2ca;
}

.consult-booking-form label {
  display: grid;
  gap: 7px;
}

.consult-booking-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.consult-booking-form label span {
  font-size: 0.95rem;
  color: #bfb39f;
  letter-spacing: 0.01em;
}

.consult-booking-form input,
.consult-booking-form textarea {
  width: 100%;
  border: 1px solid rgba(77, 101, 148, 0.58);
  border-radius: 11px;
  background: rgba(5, 12, 22, 0.95);
  color: #f0e4ce;
  padding: 12px 13px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.consult-booking-form input:focus,
.consult-booking-form textarea:focus {
  border-color: rgba(208, 163, 90, 0.82);
  box-shadow: 0 0 0 3px rgba(208, 163, 90, 0.17);
  background: rgba(10, 17, 30, 0.95);
  outline: none;
}

.consult-booking-form textarea {
  resize: vertical;
  min-height: 104px;
}

.consult-booking-form-summary {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(80, 105, 151, 0.36);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.consult-booking-payment {
  margin: 0;
  color: #d3c2a3;
  font-size: 0.96rem;
  line-height: 1.45;
  max-width: 420px;
}

.consult-booking-form .btn {
  min-width: 250px;
  padding: 13px 22px;
  border-radius: 999px;
  text-align: center;
  letter-spacing: 0;
  font-size: 1rem;
  text-transform: none;
}

.consult-booking-form .btn:not(:disabled) {
  cursor: pointer;
}

.consult-booking-form .btn:not(:disabled):hover {
  transform: translateY(-1px);
}

.consult-booking-form .btn:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.consult-booking-feedback {
  min-height: 24px;
  margin: 14px 2px 0;
  color: #d2c3a8;
  font-size: 0.92rem;
}

.consult-booking-feedback.is-error {
  color: #f0a4a4;
}

.consult-booking-feedback.is-success {
  color: #9ce0b8;
}

.consult-booking-loading,
.consult-booking-empty {
  margin: 0;
  color: #d7c9af;
}

@media (max-width: 980px) {
  .header-row {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px 0 10px;
  }

  .header-burger {
    display: inline-flex;
    justify-self: end;
  }

  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    border: 1px solid rgba(77, 95, 129, 0.72);
    border-radius: 14px;
    background: rgba(10, 18, 31, 0.96);
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .header-actions[data-mobile-panel].is-open {
    display: flex;
  }

  body.mobile-nav-ready .header-actions[data-mobile-panel] {
    display: none;
  }

  body.mobile-nav-ready .header-actions[data-mobile-panel].is-open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 6px;
  }

  .site-nav li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .site-nav li:not(:last-child) {
    padding-right: 0;
  }

  .site-nav li:not(:last-child)::after {
    display: none;
  }

  .site-nav li:last-child {
    margin-left: 0;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(20, 31, 49, 0.58);
    text-align: center;
  }

  .site-nav a.nav-cta,
  .site-nav li:last-child a,
  .site-nav a[href*="/consultation/"] {
    width: 100%;
    min-width: 0;
  }

  .lang-switcher {
    margin-left: 0;
    align-self: center;
  }

  .hero-inner,
  .about-wrap,
  .cards,
  .project-grid,
  .about-layout,
  .consult-layout {
    grid-template-columns: 1fr;
  }

  .consult-important-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-booking-head {
    text-align: left;
  }

  .consult-booking-head p {
    margin: 0;
  }

  .consult-booking-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "calendar"
      "prep"
      "side";
  }

  .consult-booking-calendar-col {
    gap: 12px;
  }

  .consult-booking-calendar-grid {
    min-width: 0;
  }

  .consult-slot-day-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-booking-slots-head {
    align-items: flex-start;
  }

  .consult-slots-count {
    align-self: flex-start;
  }

  .consult-booking-form-summary {
    flex-wrap: wrap;
  }

  .consult-booking-form .btn {
    min-width: 210px;
  }

  .about-approach-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-principles-flow {
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(206, 168, 97, 0.24);
  }

  .about-principles-track {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-side--profile {
    position: static;
    top: auto;
  }

  .about-page--story .about-side {
    padding: 14px 0 8px 20px;
  }

  .about-section {
    padding: 0 0 24px 22px;
  }

  .about-section:not(:last-child)::after {
    left: 22px;
  }

  .about-timeline {
    padding-left: 14px;
  }

  .about-timeline::before {
    left: 5px;
  }

  .about-timeline li {
    padding-left: 12px;
    grid-template-columns: 1fr;
  }

  .about-timeline-year {
    min-width: 0;
    justify-self: start;
  }
  .hero {
    padding-top: 36px;
    padding-bottom: 14px;
  }

  .home .hero {
    padding-top: calc(36px + var(--header-gap) + var(--header-height) + 1px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-portrait {
    min-height: 340px;
  }

  .moment-flow-item {
    font-size: 1.02rem;
  }

  .path-values-grid {
    grid-template-columns: 1fr;
  }

  .project-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-final-cta-wrap {
    grid-template-columns: 1fr;
  }

  .home-final-cta-copy {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(96, 117, 152, 0.45);
  }

  .project-hero {
    grid-template-columns: 1fr;
  }

  .project-cover-layout {
    grid-template-columns: 1fr;
  }

  .project-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-contact-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .how-we-work-head {
    margin-bottom: 18px;
  }

  .how-we-work-panel {
    grid-template-columns: 1fr;
  }

  .how-we-work-with-me {
    border-left: 0;
    border-top: 1px solid rgba(88, 111, 151, 0.46);
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
  }

  #content {
    padding-top: 0;
  }

  .container {
    width: min(var(--container), 100% - 28px);
  }

  .header-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-overline {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }

  .brand-title {
    font-size: 0.96rem;
    letter-spacing: 0.05em;
  }

  .header-actions {
    padding: 9px;
  }

  .site-nav a {
    padding: 7px 9px;
    font-size: 0.82rem;
  }

  .header-burger {
    gap: 6px;
    padding: 6px 9px;
  }

  .header-burger-label {
    font-size: 0.64rem;
  }

  .lang-switcher {
    gap: 4px;
    padding: 3px;
  }

  .lang-item {
    min-width: 32px;
    height: 28px;
    padding: 0 8px;
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .home .hero {
    padding-top: 24px;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-title {
    font-size: clamp(1.56rem, 8vw, 2.3rem);
    margin-bottom: 10px;
  }

  .home .hero-title {
    margin-bottom: 16px;
  }

  html[lang^="ka"] .home .hero-title {
    font-size: clamp(1.3rem, 6.6vw, 1.92rem);
    max-width: 23ch;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-portrait {
    min-height: 270px;
    border-radius: 24px;
  }

  .btn {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    padding: 11px 16px;
  }

  .moment-flow-wrap {
    border-radius: 18px;
    padding: 16px 14px;
  }

  .moment-flow-track {
    justify-content: flex-start;
    gap: 10px;
    padding-bottom: 6px;
  }

  .moment-flow-item {
    font-size: 0.95rem;
  }

  .moment-flow-arrow {
    width: 52px;
    height: 14px;
  }

  .moment-flow-arrow::before {
    right: 13px;
    height: 2px;
  }

  .moment-flow-arrow::after {
    width: 13px;
    height: 10px;
  }

  .path-values-wrap {
    border-radius: 18px;
    padding: 14px;
  }

  .project-grid--home {
    grid-template-columns: 1fr;
  }

  .about-lead {
    line-height: 1.65;
  }

  .about-section {
    border-radius: 0;
    padding: 0 0 20px 16px;
  }

  .about-section:not(:last-child)::after {
    left: 16px;
  }

  .about-page--story .about-side {
    padding-left: 16px;
  }

  .about-beyond-grid {
    grid-template-columns: 1fr;
  }

  .about-beyond-card {
    padding-left: 18px;
  }

  .about-principles-word {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .about-principles-flow--compact .about-principles-word {
    min-width: 122px;
  }

  .about-principles-connector {
    min-height: 30px;
    margin: 8px 0 12px;
  }

  .home-final-cta {
    padding-bottom: 52px;
  }

  .home-final-cta-wrap {
    border-radius: 18px;
    padding: 16px 14px;
  }

  .home-final-cta-copy {
    height: auto;
  }

  .home-final-cta-copy h2 {
    font-size: clamp(1.32rem, 7vw, 1.86rem);
  }

  .home-final-cta-copy p {
    line-height: 1.62;
  }

  .home-final-cta-card {
    border-radius: 14px;
    padding: 14px;
    gap: 12px;
  }

  .home-final-cta-metric {
    border-radius: 12px;
    min-height: 0;
  }

  .home-final-cta-followup-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .home-final-cta-btn {
    font-size: 0.82rem;
    padding: 12px 10px;
  }

  .project-contact-cta-btn {
    white-space: normal;
    width: 100%;
    text-align: center;
  }

  .project-card .btn {
    width: 100%;
    text-align: center;
  }

  .project-contact-cta-copy h2 {
    overflow-wrap: anywhere;
  }

  .project-process-v2-head p {
    letter-spacing: 0.1em;
  }

  .consult-booking {
    margin-top: 30px;
  }

  .consult-booking-head {
    margin-bottom: 16px;
    text-align: left;
  }

  .consult-booking-head h1,
  .consult-booking-head h2 {
    font-size: clamp(1.55rem, 7vw, 2.25rem);
  }

  .consult-booking-layout {
    gap: 12px;
    grid-template-areas:
      "calendar"
      "side"
      "prep";
  }

  .consult-booking-calendar-col {
    gap: 10px;
  }

  .consult-booking-calendar,
  .consult-prep-card,
  .consult-booking-slots-panel,
  .consult-booking-form {
    border-radius: 14px;
    padding: 14px;
  }

  .consult-booking-calendar-month {
    font-size: 1.24rem;
  }

  .consult-month-nav-btn {
    width: 34px;
    height: 34px;
    font-size: 1.14rem;
  }

  .consult-calendar-day {
    min-height: 52px;
    border-radius: 8px;
  }

  .consult-calendar-date {
    font-size: 1.08rem;
  }

  .consult-calendar-legend {
    justify-content: flex-start;
  }

  .consult-slot-day-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-slot-btn {
    min-height: 48px;
    font-size: 0.92rem;
    border-radius: 10px;
  }

  .consult-booking-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .consult-booking-form label span {
    font-size: 0.9rem;
  }

  .consult-booking-form-summary {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .consult-booking-payment {
    font-size: 0.9rem;
  }

  .consult-booking-form .btn {
    width: 100%;
    min-width: 0;
  }

  .consult-prep-card h3 {
    margin-bottom: 10px;
    font-size: 1.02rem;
  }

  .consult-prep-list {
    gap: 8px;
  }

  .consult-prep-list li {
    padding-left: 17px;
    font-size: 0.92rem;
  }

  .consult-important {
    margin-top: 2px;
  }

  .consult-important-head {
    margin-bottom: 14px;
  }

  .consult-important-grid {
    grid-template-columns: 1fr;
  }

  .consult-important-card {
    min-height: 0;
    border-radius: 16px;
    padding: 16px 16px 14px;
  }

  .consult-important-number {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }

  .consult-important-badge {
    border-radius: 0 16px 0 10px;
    height: 24px;
    padding: 0 11px;
    font-size: 0.69rem;
  }

  .consult-important-card h3 {
    margin: 12px 0 9px;
  }

  .home-final-cta-price-value {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .home-final-cta-purpose {
    font-size: 0.88rem;
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-social ul {
    justify-content: flex-start;
  }

  .footer-social a {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  .project-card-title {
    font-size: 0.98rem;
  }

  .project-fact-grid {
    grid-template-columns: 1fr;
  }

  .project-cover--compact .project-thumb {
    aspect-ratio: auto;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .path-values-card {
    min-height: 0;
    padding: 18px 16px 20px;
    border-radius: 6px;
  }

  .path-values-card::after {
    left: 18px;
    bottom: 14px;
    width: 46px;
    height: 3px;
  }

  .path-values-index {
    min-width: 50px;
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .path-values-index::before {
    width: 24px;
    height: 24px;
  }

  .path-values-card h3 {
    font-size: clamp(1.08rem, 5.4vw, 1.34rem);
    margin-bottom: 10px;
  }

  .path-values-card p {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .how-we-work-section {
    padding-bottom: 34px;
  }

  .path-values-section .container {
    width: min(var(--container), 100% - 28px);
  }

  .how-we-work-section .container {
    width: min(var(--container), 100% - 28px);
  }

  .how-we-work-head {
    margin-bottom: 14px;
  }

  .how-we-work-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .how-we-work-title {
    font-size: clamp(1.7rem, 9vw, 2.5rem);
    line-height: 1;
  }

  .how-we-work-subtitle {
    margin-top: 10px;
    font-size: clamp(1.02rem, 5.6vw, 1.36rem);
  }

  .how-we-work-panel {
    border-radius: 20px;
  }

  .how-we-work-intro,
  .how-we-work-with-me {
    padding: 16px 14px;
  }

  .how-we-work-intro-title {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
    max-width: 100%;
  }

  .how-we-work-intro-lead {
    margin-top: 16px;
    font-size: clamp(1.05rem, 4.8vw, 1.3rem);
  }

  .how-we-work-intro-text {
    font-size: 0.94rem;
  }

  .how-we-work-approach {
    margin-top: 22px;
    padding-top: 16px;
    gap: 10px;
  }

  .how-we-work-approach-icon {
    width: 50px;
    height: 50px;
    font-size: 1.22rem;
  }

  .how-we-work-approach-label {
    font-size: 0.94rem;
  }

  .how-we-work-approach-value {
    font-size: clamp(0.98rem, 4.2vw, 1.24rem);
  }

  .how-we-work-with-me-title {
    margin-bottom: 16px;
    font-size: clamp(1.32rem, 6vw, 1.72rem);
    gap: 10px;
  }

  .how-we-work-with-me-title::before {
    width: 28px;
  }

  .how-we-work-list + .how-we-work-list {
    margin-top: 18px;
  }

  .how-we-work-list h4 {
    font-size: 0.86rem;
    margin-bottom: 9px;
  }

  .how-we-work-list li {
    padding-left: 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), 100% - 20px);
  }

  .hero-title {
    font-size: clamp(1.4rem, 8.4vw, 1.92rem);
  }

  .home .hero-title {
    margin-bottom: 14px;
  }

  html[lang^="ka"] .home .hero-title {
    font-size: clamp(1.18rem, 6.3vw, 1.62rem);
    max-width: 22.5ch;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .btn-row {
    gap: 8px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
  }

  .path-values-wrap {
    padding: 12px;
  }

  .path-values-card {
    padding: 16px 14px 18px;
  }

  .path-values-card h3 {
    font-size: 1.03rem;
  }

  .path-values-card p {
    font-size: 0.92rem;
  }

  .path-values-index {
    min-width: 46px;
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .path-values-index::before {
    width: 22px;
    height: 22px;
  }

  .how-we-work-panel {
    border-radius: 16px;
  }

  .how-we-work-intro,
  .how-we-work-with-me {
    padding: 14px 12px;
  }

  .how-we-work-intro-title {
    font-size: clamp(1.16rem, 6.2vw, 1.42rem);
    line-height: 1.28;
  }

  .how-we-work-approach {
    gap: 8px;
  }

  .how-we-work-approach-value {
    font-size: clamp(0.9rem, 4vw, 1.08rem);
  }

  html[lang^="ka"] .how-we-work-approach-value {
    font-size: clamp(0.82rem, 3.7vw, 0.98rem);
  }

  .consult-slot-day-row {
    grid-template-columns: 1fr;
  }

  .project-process-v2-head p {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
}


