/* =========================================================================
   1. ГЛОБАЛЬНІ ЗМІННІ ТА СКИДАННЯ СТИЛІВ
   ========================================================================= */
:root {
    --green-dark: #0d2118;
    --green: #193a2c;
    --green-soft: #2f5944;
    --dark: #081710; /* додано з блогу */
    --milk: #f5f0e7;
    --gold: #b9a06f;
    --text: #233228;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--green-dark);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================================================
   2. БАЗОВА ТИПОГРАФІКА ТА СТРУКТУРА
   ========================================================================= */
.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}

p {
    margin-top: 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}

.section {
    padding: 120px 0;
}

/* Спільна кнопка */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--milk);
    color: #0d2118;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: .25s ease;
    cursor: pointer;
}

.btn:hover {
    background: #fff;
    transform: translateY(-1px);
}

/* =========================================================================
   3. ШАПКА САЙТУ (HEADER)
   ========================================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(13, 33, 24, .74);
    backdrop-filter: blur(16px);
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}


/* .site-header, header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 33, 24, .74);
    backdrop-filter: blur(16px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
} */

.header-inner {
    height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
}

.site-nav, nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.site-nav a, nav a {
    font-size: 14px;
    opacity: .9;
}

.site-nav a.active, nav a.active {
    color: var(--gold);
    opacity: 1;
}

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



.lang-switch,
.lang {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(245, 240, 231, .22);
    border-radius: 999px;
    background: rgba(245, 240, 231, .08);
    list-style: none;
    margin: 0;
}

.lang-switch li {
    list-style: none;
}

.lang-switch a,
.lang a {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(245, 240, 231, .68);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    transition: .25s ease;
}

.lang-switch .current-lang a {
    background: var(--milk);
    color: var(--green-dark);
}

.lang-switch .current-lang a {
    background: var(--milk);
    color: var(--green-dark);
}


/* =========================================================================
   4. ПІДВАЛ САЙТУ (FOOTER)
   ========================================================================= */
.site-footer, footer {
    padding: 50px 0;
    background: #09170f;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

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

.footer-links, .socials {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}


.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.mobile-actions {
    display: none;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
        z-index: 1001;
    }

    .header-actions {
        display: none;
    }
	
	   .mobile-actions .btn {
        display: flex;
        width: 100%;
        background: var(--green);
        color: #fff;
        margin-top: 10px;
		           
    }

  .site-nav {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;

        background: #fff;

        display: flex;
        flex-direction: column;
        gap: 20px;

        padding: 24px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);

        transition: all 0.3s ease;
        z-index: 1000;
    }

    .site-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        color: var(--text);
        font-size: 16px;
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
		align-items: center;
    }
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;

    min-width: 220px;
    padding: 10px 0;

    background: #f5f0e6;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
    z-index: 100;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px){

    .dropdown-menu{
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        padding: 8px 0 0;
        background: transparent;
    }

    .nav-dropdown.active .dropdown-menu{
        display: block;
		text-align: center;
    }
	.nav-dropdown {
		width: 100%;
	}
	
	.nav-dropdown > a {
		justify-content: center;
	}

    .dropdown-menu a{
        padding-left: 20px;
		background: #e8e8e8;
        border-radius: 4px;
        margin-bottom: 6px;
    }

}

/* =========================================================================
   5. ГЛОБАЛЬНА АДАПТИВНІСТЬ ДЛЯ ШАПКИ/ПІДВАЛУ
   ========================================================================= */
@media (max-width: 1100px) {
    .site-nav, nav {
        gap: 16px;
    }

    .header-inner {
        padding: 0 22px;
    }
}

@media (max-width: 980px) {
/*     .site-nav, nav {
        display: none;
    } */
	
	    .article-hero-grid, .article-layout, .related-grid {
        grid-template-columns: 1fr!important;
    }
	.cards .card {
        width: 100%!important;
    }
	
	    .hero-inner, .grid, .stats, .service-grid, .trust-grid {
        grid-template-columns: 1fr!important;
    }
	    .services-intro {
        gap: 56px!important;
        margin-bottom: 54px!important;
    }
	.hero-grid, .services-intro, .service-block, .choice-grid {
        grid-template-columns: 1fr!important;
    }
	    .results-wrap {
        grid-template-columns: 1fr!important;
        gap: 38px!important;
    }
	    .hero-grid, .services-intro, .service-block, .choice-grid {
        grid-template-columns: 1fr!important;
    }
	    .results-intro {
        position: static!important;
    }
	    .next-step-grid {
        grid-template-columns: 1fr!important;
        gap: 38px!important;
    }
}

@media (max-width: 640px) {
    .header-inner {
        height: 78px;
        padding: 0 16px;
    }

    .logo {
        font-size: 24px;
    }

/*     .site-header .btn, .right .btn {
        display: none;
    } */

    .section {
        padding: 76px 0;
    }
}

/* =========================================================================
   6. СТИЛІ МОДАЛЬНОГО ВІКНА (POPUP FORM)
   ========================================================================= */

/* Оверлей (задній фон поп-апу) за замовчуванням прихований */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 23, 16, 0.6);
    backdrop-filter: blur(12px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

/* Показуємо при додаванні класу .active через JS */
.popup-overlay.active {
    display: flex;
    opacity: 1;
}

/* Тіло модального вікна */
.popup-body {
    background: var(--milk);
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg, 38px);
    padding: 44px;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.popup-overlay.active .popup-body {
    transform: translateY(0);
}

/* Кнопка закриття (хрестик) */
.popup-close-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    background: transparent;
    border: 0;
    font-size: 36px;
    line-height: 1;
    color: var(--green-dark);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.popup-close-btn:hover {
    opacity: 1;
}

/* Стилізація полів форми всередині поп-апу */
.popup-form-fields .form-group {
    margin-bottom: 16px;
}

.popup-form-fields input[type="text"],
.popup-form-fields input[type="tel"],
.popup-form-fields input[type="email"],
.popup-form-fields textarea {
    width: 100%;
    padding: 16px 22px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    font-size: 16px;
    color: var(--text);
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

.popup-form-fields input:focus,
.popup-form-fields textarea:focus {
    border-color: var(--green-soft);
}

/* Кнопка відправки всередині форми */
.popup-form-fields .form-submit-wrap .btn {
    width: 100%;
    cursor: pointer;
    border: none;
    background: var(--green);
    color: #ffffff;
}

.popup-form-fields .form-submit-wrap .btn:hover {
    background: var(--green-dark);
}

/* ARTICLE CONTENT */

.article-hero {
    min-height: 92vh;
    padding-top: 130px;
    padding-bottom: 70px;
    background: radial-gradient(circle at 80% 18%, rgba(184, 155, 102, .14), transparent 28%), linear-gradient(135deg, #f4efe6 0%, #eee8dd 58%, #e6dfd1 100%);
    display: flex;
    align-items: center;
}
.article-hero-grid {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 70px;
    align-items: center;
}
.eyebrow {
    color: var(--gold);
    letter-spacing: .24em;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.article-hero h1 {
	    font-size: clamp(58px, 8vw, 118px);
    line-height: .92;
    margin-bottom: 28px;
	font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--text);
}


.btn.dark {
    background: #173626;
    color: white;
    border: none;
}

.hero-image {
    position: relative;
    height: 650px;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 36px 100px rgba(0, 0, 0, .18);
    background: #d9d3c7;
}
.hero-image img {
    height: 100%;
    object-fit: cover;
    filter: saturate(.92);
}
.hero-note {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(8, 23, 16, .62);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .12);
}

.hero-note p {
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    margin: 0;
	max-width: 680px;
}
.pdesc {
    max-width: 680px;
    font-size: 20px;
    color: #59645d;
	    line-height: 1.9;
	    margin-bottom: 20px;
}
.article-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.article-shell {
    padding: 100px 0;
    background: var(--milk);
}

.article-layout {
    display: grid;
    grid-template-columns:280px minmax(0, 760px);
    gap: 70px;
    align-items: start;
}

.toc {
    position: sticky;
    top: 120px;
    padding: 24px;
    border-radius: 26px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .06);
}


.toc-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 18px;
}

.toc .lwptoc,
.toc .lwptoc_i {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    width: 100%;
}

.lwptoc-light .lwptoc_i {
	background: transparent!important;
}

.toc .lwptoc_itemWrap,
.toc .lwptoc_item {
    margin: 0;
    padding: 0;
}

.toc a {
    display: block;
    padding: 10px 0;
    color: #526058!important;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .06)!important;
    transition: color .2s ease;
	font-size: 15px;
}

.toc a:hover {
    color: var(--gold);
}

.toc .lwptoc_item_number {
    display: none;
}

.toc .lwptoc_toggle {
    display: none;
}
.article-content {
    min-width: 0;
}

.article-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

.lead-paragraph {
    font-size: 23px;
    color: #38463d;
    line-height: 1.75;
}

.pull-quote {
    margin: 44px 0;
    padding: 36px 40px;
    border-radius: 32px;
    background: #173626;
}

.pull-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    line-height: 1.12;
    color: white;
    margin: 0;
}

.practice-card {
    margin: 34px 0;
    padding: 34px;
    border-radius: 34px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .06);
}
.practice-card h3 span {
	    align-items: center;
    display: flex;
    gap: 20px;
}

.practice-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1ece2;
    color: #6b5a38;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    margin-top: 3px;
}

.question-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.question-list div {
/*     padding: 16px 18px;
    border-radius: 18px;
    background: #f7f3eb; */
	padding: 16px 18px;
    border-radius: 18px;
    background: #f7f3eb;
    color: #4f5b53;
    font-size: 17px;
    line-height: 1.55;
}

.body-scan {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0;
}

.body-scan span {
    padding: 10px 14px;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .06);
    color: #173626;
    font-weight: 700;
    font-size: 14px;
}

.simple-list {
    display: grid;
    gap: 12px;
    margin: 28px 0;
}

.simple-list div {
    padding: 16px 18px;
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .06);
	    color: #4f5b53;
    font-size: 17px;
    line-height: 1.55;
}

.inline-image {
    margin: 54px 0;
    border-radius: 36px;
    overflow: hidden;
}

.inline-image img {
    height: 430px;
    object-fit: cover;
}

.final-block {
    padding: 48px;
    border-radius: 38px;
    background: linear-gradient(135deg, #10261d, #173626);
    color: white;
	
}

.final-block h2,
.final-block p {
    color: white!important;
}

.final-question {
    margin-top: 28px;
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .08);
}

.final-question p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px!important;
    line-height: 1.12!important;
    color: white;
    margin: 0!important;
}

/* RELATED / NEXT */

.next-step {
    padding: 100px 0;
    background: #0b1b13;
    color: white;
}

.next-step-grid {
    display: grid;
    grid-template-columns:.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.next-step-card {
    padding: 44px;
    border-radius: 36px;
    background: rgba(255, 255, 255, .06);
}

.next-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.recommendations {
    display: grid;
    gap: 16px;
}

.recommendation-item {
    display: grid;
    grid-template-columns:110px 1fr;
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .06);
}

.recommendation-item img {
    height: 94px;
    border-radius: 22px;
    object-fit: cover;
}

.recommendation-tag {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(184, 155, 102, .16);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

/* MOBILE */

@media (max-width: 980px) {

    . article-hero-grid,
    . article-layout,
    . next-step-grid {
        grid-template-columns:1fr;
    }

    .toc {
        display: none;
    }

    .hero-image {
        height: 520px;
    }

    .recommendation-item {
        grid-template-columns:1fr;
    }

    .recommendation-item img {
        height: 220px;
    }
}

@media (max-width: 640px) {

    .article-hero {
        padding-top: 120px;
        min-height: auto;
    }

    .pull-quote p,
    .final-question p {
        font-size: 30px;
    }

    .practice-card,
    .final-block {
        padding: 26px;
    }
}

/* BLOG */
.article-content p {
	line-height: 1.9;
    color: #5b665e;
    font-size: 18px;
    margin-bottom: 20px;
}

.wp-block-quote {
    margin: 44px 0;
    padding: 36px 40px;
    border-radius: 32px;
    background: #173626;
    color: white;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .12);
}

.wp-block-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    line-height: 1.12;
    color: white;
    margin: 0;
}

.wp-block-image {
	margin: 54px 0;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .12);
}

.post-gutenberg-content h2 {
	font-size: clamp(40px, 4.8vw, 70px);
    line-height: 1;
	color: var(--text);
	margin-bottom: 28px;
}



/* CONTACT SECTION */
.contact {
    background: linear-gradient(rgba(13, 33, 24, .82), rgba(13, 33, 24, .9)), var(--contact-photo) center/cover no-repeat;
    text-align: center;
}

.contact-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 70px;
    border-radius: 36px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.contact-card p {
    color: rgba(255, 250, 242, .78);
}

/* SERVICES */

.services-section{
  background:
    radial-gradient(circle at 84% 12%, rgba(184,155,102,.12), transparent 28%),
    var(--milk);
  color:var(--text);
}

.services-section p{
  color:#556158;
}

.services-intro{
  display:grid;
  grid-template-columns:minmax(320px,520px) 1fr;
  gap:54px;
  align-items:center;
  margin-bottom:76px;
}

.services-intro-title{
  position:relative;
}

.services-intro-title:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-34px;
  width:130px;
  height:2px;
  background:var(--gold);
  border-radius:999px;
}

.services-intro-title h2{
  margin-bottom:0;
  max-width:520px;
  line-height:.95;
}

.services-intro-card{
  background:white;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 26px 80px rgba(0,0,0,.055);
  border-radius:36px;
  padding:44px 48px;
  max-width:720px;
  position:relative;
  overflow:hidden;
}

.services-intro-card:before{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(184,155,102,.12);
}

.services-intro-line{
  width:72px;
  height:2px;
  background:var(--gold);
  margin-bottom:26px;
  border-radius:999px;
}

.services-intro-card p{
  margin:0;
  position:relative;
  z-index:2;
  font-size:20px;
  line-height:1.9;
  color:#556158;
}

/* OLD SERVICE BLOCKS */

.service-list{
  display:grid;
  gap:30px;
}

.service-block{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:42px;
  align-items:stretch;
  padding:18px;
  border-radius:38px;
  background:white;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 24px 80px rgba(0,0,0,.055);
}

.service-visual{
  position:relative;
  min-height:420px;
  border-radius:28px;
  overflow:hidden;
  background:#d9d3c7;
}

.service-visual img{
  height:100%;
  object-fit:cover;
  filter:saturate(.9);
}

.service-number{
  position:absolute;
  left:20px;
  top:20px;
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(244,239,230,.88);
  color:#6b5a38;
  font-weight:800;
}

.service-content{
  padding:36px 28px 32px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.service-content h3{
  color:var(--text);
}

.service-content p{
  font-size:17px;
}

.service-content .wp-block-buttons {
	padding: 18px 0;
}

.service-content .wp-block-button__link {
	background: #245342;
}

.service-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.service-tags span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#f1ece2;
  color:#6b5a38;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
}

/* APPROACH */

.approach{
  background:#0b1b13;
  color:white;
  text-align:center;
}

.approach-box{
  max-width:960px;
  margin:auto;
  padding:60px;
  border-radius:40px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09);
  box-shadow:0 30px 90px rgba(0,0,0,.2);
}

.approach h2{
  color:white;
}

.approach p{
  font-size:20px;
  color:rgba(255,255,255,.78);
}

/* CHOICE */

.choice-section{
  background:linear-gradient(135deg,#07140e 0%,#10261d 50%,#173626 100%);
}

.choice-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.choice-list{
  display:grid;
  gap:16px;
}

.choice-item{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:18px;
  align-items:center;
  padding:22px;
  border-radius:26px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.choice-item span{
  font-family:'Cormorant Garamond',serif;
  font-size:34px;
  color:var(--gold);
}

.choice-item p{
  margin:0;
  color:rgba(255,255,255,.76);
  font-size:17px;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 70px;
    background: radial-gradient(circle at 85% 20%, rgba(79, 120, 90, .32), transparent 32%), linear-gradient(135deg, #0b1d15 0%, #10281d 48%, #183a2b 100%)
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 72px;
    align-items: center;
}

h1 {
    font-size: clamp(56px, 7vw, 98px);
    max-width: 820px;
    line-height: 1.05;
}

h2 {
    font-size: clamp(42px, 5vw, 72px);
    margin-bottom: 24px;
    line-height: 1.05;
}

h3 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.05;
}

.eyebrow {
    margin-bottom: 18px;
}

.lead {
    font-size: 22px;
    max-width: 660px;
    color: rgba(255, 250, 242, .9);
    margin-top: 26px;
}

.hero-text p:not(.lead) {
    color: rgba(255, 250, 242, .78);
    max-width: 620px;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-photo {
    position: relative;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 36px 100px rgba(0, 0, 0, .34);
    min-height: 620px;
    background: #173225;
}

.hero-photo img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: center top;
}

.hero-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 33, 24, .26), transparent 48%);
}
/* Education */

.whois {
    background: var(--milk);
    color: var(--text);
}

.whois .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 50px;
}

.whois .cards .card {
    background: white;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .05);
    width: calc((100% - 54px) / 4);
    padding: 28px;
    border-radius: 26px;
    min-height: 120px;
}


.process .grid, .format .grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 40px;
    align-items: center;
}
.process .image-card, .format .image-card {
height: 520px;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
    background: #173626;
}

.process .image-card img, .format .image-card img {
height: 100%;
    object-fit: cover;
}

.process p {
	    line-height: 1.85;
    color: rgba(255, 255, 255, .76);
    margin-bottom: 18px;
}
.format h3 {
	font-size: 32px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.format .list {
	    display: grid;
    gap: 14px;
    margin-top: 20px;
}
.format .list div {

padding: 18px 22px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    color: rgba(255, 255, 255, .82);
}

.quote {
    background: #0b1b13;
    text-align: center;
}

.quote-box {
    max-width: 920px;
    margin: auto;
}
.quote-box h2 {
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1;
    margin-bottom: 30px;
}
.quote-box p {
    font-size: 20px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .76);
    margin-bottom: 18px;
}

.results-section {
    background: radial-gradient(circle at 15% 15%, rgba(184, 155, 102, .14), transparent 28%), var(--milk);
	color: var(--text);
}
.results-wrap {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 70px;
    align-items: start;
}
.results-intro {
    position: sticky;
    top: 120px;
}

.results-intro h2 {
	font-size: clamp(42px, 5vw, 74px);
    line-height: 1;
    margin-bottom: 30px;
	font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}
.results-intro p {
    max-width: 520px;
    font-size: 18px;
	    color: #556158;
	    line-height: 1.85;
	    margin-bottom: 18px;
}
.results-intro .btn {
    background: #173626;
    color: white;
    margin-top: 18px;
	padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    transition: .3s;
    border: 1px solid rgba(255, 255, 255, .12);
	display: inline-flex;
    align-items: center;
    justify-content: center;
}

.results-list {
    display: grid;
    gap: 16px;
}
.result-row {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px 32px;
    border-radius: 28px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .045);
}
.result-row span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--gold);
}
.result-row p {
    margin: 0;
    font-size: 22px;
    line-height: 1.45;
    color: #223127;
}

.accordion {
    display: grid;
    gap: 16px;
    margin-top: 50px;
}
.accordion-item {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 26px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden;
}
.accordion-btn {
    width: 100%;
    border: 0;
    background: transparent;
    color: white;
    text-align: left;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.accordion-icon {
    font-size: 34px;
    color: var(--gold);
    transition: .25s;
}
.accordion-content-inner {
    padding: 0 32px 32px;
}

.accordion-content ul {
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.7;
}

.accordion-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    line-height: 1.1;
}
.accordion-subtitle {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .62);
    margin-top: 8px;
    font-weight: 400;
}

.choice-head p {
	    line-height: 1.85;
    color: rgba(255, 255, 255, .76);
    margin-bottom: 18px;
    font-size: 18px;
}

.format .banner p {
	max-width:780px;
	margin:0 auto;
	color:rgba(255,255,255,.78);
}
.practice-card h3 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #173626;
	font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
	font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    margin-bottom: 14px;
}
.wpcf7-response-output {
	color: #081710;
	margin-top: 0!important;
}

