@import url('https://fonts.googleapis.com/css2?family=Allura&family=Italianno&family=Lora:wght@400;500;600;700&family=M+PLUS+1:wght@300;400;500;600;700&family=Nunito:wght@300;400;500;600;700&family=Sacramento&display=swap');


/* ========================================================
   DARK RED THEME
   ========================================================== */
/* ---------- :root ---------- */
:root {
  --bg: #f2ece6;
  --surface: #fffaf4;
  --text: #181217;
  --text-soft: #5f5057;
  --text-light: #9e8b91;
  --accent: #741f3d;
  --accent-soft: #c39a62;
  --line: rgba(63, 22, 39, .14);
  --shadow-xs: 0 10px 24px rgba(45, 18, 29, .08);
  --shadow-sm: 0 24px 54px rgba(45, 18, 29, .13);
  --shadow-md: 0 42px 100px rgba(45, 18, 29, .19);
  --radius-sm: 3px;
  --radius-md: 7px;
  --radius-lg: 14px;
  --container: 1360px;
--icon-filter: brightness(0) saturate(100%) invert(14%) sepia(35%) saturate(3448%) hue-rotate(308deg) brightness(88%) contrast(97%);
--cta-bg-start: #8f234a;
--cta-bg-end: #3f1026;
--social-bg: rgba(116,31,61,.06);
--social-bg-hover: rgba(116,31,61,.12);
--journey-icon-bg: var(--surface);
--journey-icon-border: var(--line);
--journey-icon-shadow: 0 10px 22px rgba(0,0,0,.10);
--journey-icon-color: var(--accent);
/* Consultation cards */
--consult-card-bg: #ffffff;
--consult-card-border: rgba(42,74,63,.06);
--consult-card-border-hover: rgba(42,74,63,.12);
--consult-card-shadow: none;
--consult-card-shadow-hover: 0 18px 48px rgba(30,40,35,.08);
--consult-duration-bg: rgba(63,99,84,.08);
--consult-button-hover: var(--accent);
/* Buttons */
--button-primary-bg: var(--accent);
--button-primary-bg-hover: color-mix(in srgb, var(--accent) 86%, black);
--button-primary-text: #fff;
--consult-button-bg: var(--button-primary-bg);
--consult-button-bg-hover: var(--button-primary-bg-hover);
--consult-button-text: var(--button-primary-text);
--cta-btn-bg: var(--surface);
--cta-btn-bg-hover: rgba(255,255,255,.95);
--cta-btn-text: var(--accent);
--cta-btn-font-weight: 600;
/* Cards */
--card-bg: var(--surface);
--card-border: var(--line);
--card-border-hover: color-mix(in srgb, var(--accent) 18%, var(--line));
--card-radius: 24px;
--card-shadow: var(--shadow-xs);
--card-shadow-hover: var(--shadow-sm);
--card-icon-bg: var(--surface);
--card-icon-border: var(--line);
/* Timeline */
--timeline-line: var(--accent);
--timeline-badge-bg: var(--surface);
--timeline-badge-text: var(--accent);
--timeline-badge-active-bg: var(--accent);
--timeline-badge-active-text: #fff;
--timeline-image-bg: var(--surface);
--timeline-image-border: rgba(255,255,255,.95);
/* About */
--about-icon-bg: color-mix(in srgb, var(--accent) 8%, var(--surface));
--about-icon-color: var(--accent-soft);
/* Simple cards */
--simple-accent-bar: color-mix(in srgb, var(--accent) 18%, transparent);
--simple-heading: var(--text);
--simple-text: var(--text-soft);
/* Typography */
--fs-h1: clamp(2.9rem, 4vw, 4.1rem);
--lh-h1: .98;
--fs-h2: clamp(2.2rem, 3vw, 3rem);
--lh-h2: 1;
--fs-h2-cta: clamp(1.8rem, 2.5vw, 2.4rem);
--fs-h3: 1.3rem;
--lh-h3: 1.4;
--fs-body: 1rem;
--lh-body: 1.75;
--fs-lead: 1.08rem;
--lh-lead: 1.8;
/* Fonts */
--font-heading: "Lora", "Spectral", "Didot", "Bodoni 72", "Bodoni MT", Georgia, serif;
--font-body:
  "Lora",
  "Avenir Next",
  "Helvetica Neue",
  Helvetica,
  Arial,
  sans-serif;
--font-script: "Italianno", "Allura", "Snell Roundhand", "Apple Chancery", cursive;
}
/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size:var(--fs-body);
  line-height:var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}
.page-shell {
  overflow-x: clip;
}
.main-stack {
  display: block;
}
/* ---------- Typography ---------- */
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--text);
  font-weight: 400;
  letter-spacing: -.055em;
}
h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  max-width: 8ch;
  margin-bottom: 44px;
}
h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  margin-bottom: 36px;
}
h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  margin-bottom: 20px;
}
p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  text-align: justify;
  color: var(--text-soft);
}
.lead {
  max-width: 50ch;
}
.about-paragraph {
  margin-top: 28px;
}
/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,247,.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(34,44,40,.045);
}
.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 34px;
}
/* ---------- Brand ---------- */
.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 290px;
}
.brand-script,
.signature {
  font-family: var(--font-script);
}
.brand-script {
  font-size: 3.15rem;
  line-height: .88;
  color: var(--accent);
  font-weight: 300;
  letter-spacing: -.03em;
}
.brand-sub {
  font-size: .76rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-light);
}
/* ---------- Navigation ---------- */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
}
.main-nav a {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-soft);
  transition:
    color .18s ease,
    opacity .18s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
/* ---------- Language ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-switch a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--text--light);
  transition:
    background .18s ease,
    color .18s ease;
}
.lang-switch a:hover,
.lang-switch a.active {
  background: rgba(72,104,91,.07);
  color: var(--accent);
}
/* ---------- Mobile toggle ---------- */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 16px;
  background: transparent;
  color: var(--accent);
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 999px;
  transition: .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before {
  top: -6px;
}
.nav-toggle span::after {
  top: 6px;
}
.nav-toggle.open span {
  background: transparent;
}
.nav-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}
.nav-overlay {
  display: none;
}
.nav-overlay.open {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(15,20,18,.18);
}
/* ---------- Shared block behavior ---------- */
.band {
  padding: 52px 0;
}
.about-band + .band{
    padding-top:8px;
}
.section-title.center {
  text-align: center;
  margin-bottom: 16px;
}
/* ---------- Hero ---------- */
.hero-home {
  padding: 0;
}
.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 0;
  background: transparent;
}
.hero-card-overlay {
  position: relative;
  min-height: 500px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
}
.hero-soft {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(250,249,247,.88) 0%,
      rgba(250,249,247,.62) 18%,
      rgba(250,249,247,.20) 42%,
      rgba(250,249,247,0) 62%
    );
}
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 42%, rgba(255,255,255,0.22), transparent 28%);
}
.hero-copy-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  width: min(700px, 100%);
  padding-left: 64px;
  padding-right: 40px;
}
.hero-copy-overlay h1 {
  max-width: 12ch;
  margin-bottom: 24px;
}
.hero-lead {
  max-width: 54ch;
  margin: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  font-weight: 500;
  transition:
    transform .18s ease,
    background .18s ease,
    color .18s ease,
    border-color .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  border: none;
}
.btn-primary:hover {
  background: var(--button-primary-bg-hover);
}
.btn-secondary {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  color: var(--text);
  border: 1px solid rgba(44,55,49,.06);
}
.btn-light {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(44,55,49,.06);
}
.btn-icon,
.btn-arrow {
  display: inline-flex;
  align-items: center;
}
.btn-icon-calendar {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
/* ---------- Intro / cards ---------- */
.intro-band {
    padding: 54px 0 46px;
}
.intro-band .container {
    background: transparent;
    padding-left: 64px;
    padding-right: 64px;
}
.intro-grid {
    display: grid;
    grid-template-columns:minmax(0,34%) minmax(0,1fr);   
    gap: 40px;
    align-items: start;
}
/* ---------- Left side ---------- */
.intro-copy {
    width: 100%;
    max-width: none;
    padding: 0;
}
.intro-copy h2 {
    max-width: none;
    margin-bottom: 24px;
}
.intro-copy .lead,
.intro-copy .about-paragraph {
    max-width: none;
    margin: 0;
}
/* ---------- Right side ---------- */
.benefit-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}
.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  min-height: 220px;
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--card-border-hover);
}
.benefit-card p{
    color:var(--text-soft);
    max-width:15ch;
    text-align:center;
}
/* ---------- Icons ---------- */
.icon-circle {
  width: 88px;
  height: 88px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--card-icon-bg);
  border: 1px solid var(--card-icon-border);
}
.icon-circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: var(--icon-filter);
}
.icon-circle--compass {
  width: 88px;
  height: 88px;
}
.icon-circle--compass .icon-compass {
    width: 56px;
    height: 56px;
    transform: scale(2.45);
}
/* ---------- Journey wide block ---------- */
.journey-band{
    padding:28px 0 46px;
}
.journey-band .container{
    background:transparent;
}
.journey-wide-card{
    position:relative;
    overflow:hidden;
    min-height:520px;
    border-radius:34px;
    background:#fff;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 18px 48px rgba(0,0,0,.08);
}
/* ---------- Background ---------- */
.journey-bg{
    position:absolute;
    inset:0;
}
.journey-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.journey-blur-left{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(250,249,247,.93) 0%,
            rgba(250,249,247,.84) 23%,
            rgba(250,249,247,.56) 40%,
            rgba(250,249,247,.20) 56%,
            rgba(250,249,247,0) 70%
        );
}
/* ---------- Layout ---------- */
.journey-overlay-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:520px;
}
.journey-col{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:64px;
}
.journey-left{
    padding-right:48px;
}
.journey-right{
    padding-left:64px;
    padding-right:56px;
}
/* ---------- Headings ---------- */
.journey-left h2{
    margin-bottom:34px;
}
.journey-right h2{
    margin-bottom:36px;
    color:#fff;
    line-height:1.12;
    text-shadow:
        0 3px 16px rgba(0,0,0,.34);
}
/* ---------- Lists ---------- */
.check-list,
.feature-list{
    list-style:none;
    margin:0;
    padding:0;
}
.check-list-large,
.feature-list-icons{
    display:grid;
    gap:24px;
}
/* ---------- Left list ---------- */
.check-list-large li{
    position:relative;
    padding-left:28px;
}
.check-list-large li::before{
    content:"";
    position:absolute;
    left:0;
    top:13px;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 0 5px rgba(72,104,91,.08);
}
/* ---------- Right list ---------- */
.feature-list-icons li{
    display:grid;
    grid-template-columns:58px 1fr;
    gap:18px;
    align-items:center;
    color:#fff;
    text-shadow:0 3px 14px rgba(0,0,0,.35);
}
/* ---------- Icons ---------- */
.feature-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--journey-icon-bg);
    border:1px solid var(--journey-icon-border);
    box-shadow:var(--journey-icon-shadow);
}
.feature-icon svg{
    width:25px;
    height:25px;
    stroke:var(--text);
    fill:none;
    stroke-width:2.1;
}
/* ---------- Timeline ---------- */
}timeline-band {
    padding: 56px 0 46px;
}
.timeline-band .container {
    background: transparent;
    padding-left: 64px;
    padding-right: 64px;
}
.timeline-band h2 {
    text-align: center;
    margin-bottom: 64px;
}
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    align-items: start;
}
.timeline-step {
    position: relative;
    text-align: center;
    padding-top: 12px;
}
/* ---------- Connecting arrows ---------- */
.timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 90px;
    left: calc(50% + 102px);
    width: calc(100% - 164px);
    height: 18px;
    transform: translateY(-50%);
    opacity: .7;
    background-color: var(--timeline-line);
    -webkit-mask:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 20'><path d='M1 10H206' stroke='black' stroke-width='2' stroke-linecap='round'/><path d='M194 1L209 10L194 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>")
        no-repeat center / 100% 100%;
    mask:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 20'><path d='M1 10H206' stroke='black' stroke-width='2' stroke-linecap='round'/><path d='M194 1L209 10L194 19' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>")
        no-repeat center / 100% 100%;
}
.timeline-step:last-child::after {
    display: none;
}
/* ---------- Number ---------- */
.step-badge {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--timeline-badge-bg);
    border: 1px solid var(--line);
    color: var(--timeline-badge-text);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-xs);
    z-index: 5;
}
.timeline-step:first-child .step-badge {
    background: var(--timeline-badge-active-bg);
    color: var(--timeline-badge-active-text);
}
/* ---------- Image ---------- */
.step-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 22px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--timeline-image-border);
    background: var(--timeline-image-bg);
    box-shadow: var(--shadow-sm);
}
.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* ---------- Text ---------- */
.timeline-step h3 {
    margin: 0 0 8px;
    font-weight: 600;
    line-height: 1.35;
}
.timeline-step p {
    margin: 0 auto;
    max-width: 24ch;
    text-align: center;
}
/* ---------- About ---------- */
.about-band {
  padding: 70px 0;
}
.about-band .container {
  background: transparent;
}
.about-grid {
  display: grid;
  grid-template-columns: 470px minmax(0, 1.25fr) 300px;
  gap: 46px;
  align-items: center;
}
.about-photo {
  overflow: hidden;
  border-radius: 34px;
  background: #f3f3f1;
  box-shadow: var(--shadow-sm);
}
.about-photo img {
  width: 100%;
  height: 670px;
  object-fit: cover;
  object-position: center top;
}
.about-copy {
  padding: 0;
}
.about-copy h2 {
  margin-bottom: 24px;
}
.about-copy p {
  margin: 0 0 22px;
}
.signature {
  margin-top: 34px;
  font-size: 2rem;
  color: var(--accent);
}
/* ---------- Facts ---------- */
.about-facts {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.about-facts ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 30px;
}
.about-facts li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
}
.about-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--about-icon-bg);
}
.about-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--about-icon-color);
  fill: none;
  stroke-width: 2;
}
/* ---------- About principles ---------- */
.simple-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:56px;
    margin-top:28px;
    margin-left:0;
    width:100%;
}
.simple-card{
    position:relative;
    padding-left:30px;
    background:none;
    border:none;
    box-shadow:none;
}
.simple-card::before{
    content:"";
    position:absolute;
    left:0;
    top:6px;
    width:4px;
    height:56px;
    border-radius:999px;
    background:var(--simple-accent-bar);
}
.simple-card strong{
    display:block;
    margin:0 0 14px;
    font-family:var(--font-heading);
    font-size:2rem;
    font-weight:500;
    line-height:1;
    color:var(--simple-heading);
    letter-spacing:-0.02em;
}
.simple-card{
    color:var(--simple-text);
}
.simple-card p{
    margin:0;
}
/* ---------- Footer CTA ---------- */
.cta-inner{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0,1fr) 310px;
    gap:72px;
    align-items:center;
    min-height:165px;
    padding:22px 56px;
    border-radius:36px;
    overflow:hidden;
background:
    radial-gradient(
        circle at left top,
        rgba(255,255,255,.10),
        transparent 42%
    ),
    linear-gradient(
        135deg,
        var(--cta-bg-start) 0%,
        var(--cta-bg-end) 100%
    );
}
/* dekoratīvais zieds */
.cta-inner::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:300px;
    height:300px;
    background:
        url("../images/leaf-right.png")
        no-repeat
        right bottom / contain;
    opacity:.10;
    pointer-events:none;
    z-index:1;
}
.cta-copy{
    position:relative;
    z-index:2;
    max-width:760px;
}
.cta-inner h2{
    margin:0 0 10px;
    max-width:none;
    font-size:var(--fs-h2-cta);
    color:#fff;
    line-height:1;
}
.cta-inner p{
    margin:0;
    max-width:560px;
    color:rgba(255,255,255,.90);
    text-align:left;
}
/* ---------- Footer contacts ---------- */
.cta-side{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:14px;
    padding-top:0px;
}
.cta-inner .btn{
    width:250px;
    height:52px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:999px;
    background:var(--cta-btn-bg);
    color:var(--cta-btn-text);
    font-weight:var(--cta-btn-font-weight);   
    border:none;
    white-space:nowrap;
    box-shadow:none;
    transition:
        transform .22s ease,
        background .22s ease;
}
.cta-inner .btn:hover{
    background:var(--cta-btn-bg-hover);
    color:var(--cta-btn-text);
    transform:translateY(-2px);
}
.cta-inner .btn svg,
.cta-inner .btn .btn-icon{
    color:var(--accent);
}
.cta-contact{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:14px;
}
.cta-phone{
    color:#fff;
    font-size:1.05rem;
    font-weight:700;
    letter-spacing:.02em;
}
.cta-phone:hover{
    opacity:.85;
}
.cta-socials{
    display:flex;
    gap:12px;
}
.cta-social{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.16);
    color:#fff;
    transition:
        transform .2s ease,
        background .2s ease;
}
.cta-social:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,.18);
}
.cta-social svg{
    width:22px;
    height:22px;
}
/* ---------- Other inner pages support ---------- */
.page-hero {
  padding: 110px 0 54px;
}
.page-hero .container {
  max-width: 900px;
}
.page-hero h1 {
  margin-bottom: 18px;
  text-align: center;
}
.page-hero .lead {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.page-section {
  padding: 60px 0;
}
.page-card {
  background: #fff;
  border-radius: 30px;
  padding: 54px;
  box-shadow: var(--shadow-sm);
}
.page-card + .page-card {
  margin-top: 36px;
}
.page-card h2 {
  margin-bottom: 22px;
}
.page-card p:last-child {
  margin-bottom: 0;
}
.content-narrow {
  max-width: 840px;
  margin: 0 auto;
}
.content-medium {
  max-width: 1080px;
  margin: 0 auto;
}
.content-wide {
  max-width: 1320px;
  margin: 0 auto;
}
.image-card {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.image-card img {
  display: block;
  width: 100%;
  height: auto;
}
.surface-soft {
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.surface-light {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
/* ---------- Inner pages shared spacing ---------- */
.section {
  padding: 70px 0;
}
.section-sm {
  padding: 48px 0;
}
.section-lg {
  padding: 110px 0;
}
.section-title {
  margin-bottom: 18px;
}
.section-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--text-soft);
}
.stack-xs > * + * {
  margin-top: 12px;
}
.stack-sm > * + * {
  margin-top: 20px;
}
.stack-md > * + * {
  margin-top: 32px;
}
.stack-lg > * + * {
  margin-top: 52px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 16px;
}
.mb-2 {
  margin-bottom: 28px;
}
.mb-3 {
  margin-bottom: 44px;
}
.rounded-xl {
  border-radius: 34px;
}
.shadow-soft {
  box-shadow: var(--shadow-sm);
}
.surface-white {
  background: #fff;
}
.surface-glass {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
}
/* ---------- Services page ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 42px;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
}
.service-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(72,104,91,.06);
}
.service-icon svg,
.service-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.service-card h3 {
  margin-bottom: 18px;
}
.service-card p {
  margin: 0;
}
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(72,104,91,.06);
  color: var(--accent);
  font-size: .9rem;
  font-weight: 500;
}
.service-card .btn {
  margin-top: 34px;
  align-self: flex-start;
}
/* ---------- Consultation page ---------- */
.consultation-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.consultation-copy h2 {
  margin-bottom: 22px;
}
.consultation-copy p {
  margin-bottom: 22px;
}
.consultation-points {
  margin: 36px 0 42px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}
.consultation-points li {
  position: relative;
  padding-left: 34px;
  line-height: 1.75;
  color: var(--text);
}
.consultation-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.consultation-image {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-sm);
}
.consultation-image img {
  display: block;
  width: 100%;
  height: 100%
  object-fit: cover;
}
.consultation-info {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.consultation-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(72,104,91,.06);
  color: var(--accent);
  font-weight: 500;
}
/* ---------- Consultation cards on homepage ---------- */
.consult-cards-band {
  padding: 40px 0 20px;
}
.consult-cards-band .container {
  background: transparent;
}
.consult-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.consult-option-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 34px;
  border-radius: 30px;
  background: var(--consult-card-bg);
  border: 1px solid var(--consult-card-border);
  box-shadow: var(--consult-card-shadow);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}
.consult-option-card:hover {
  transform: translateY(-4px);
  border-color: var(--consult-card-border-hover);
  box-shadow: var(--consult-card-shadow-hover);
}
.consult-option-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.consult-option-top h3 {
  margin: 0;
  font-weight: 500;
  line-height: 1.25;
}
.consult-option-duration {
  flex-shrink: 0;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--consult-duration-bg);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.consult-option-card p {
  flex: 1;
  margin: 0;
  text-align: justify;
  text-align-last: left;
}
.consult-option-btn {
  width: 100%;
  margin-top: 36px;
  justify-content: center;
}
.consult-option-card .btn {
  margin-top: auto;
}
.consult-option-card .btn{
    background:var(--consult-button-bg);
    color:var(--consult-button-text);
}
.consult-option-card .btn:hover{
    background:var(--consult-button-bg-hover);
}
/* ---------- Header contacts ---------- */
.header-contact{
    display:flex;
    align-items:center;
    gap:14px;
    margin-left:auto;
}
.header-phone{
    display:inline-flex;
    align-items:center;
    white-space:nowrap;
    color:var(--accent);
    font-size:1.05rem;
    font-weight:600;
    text-decoration:none;
    transition:color .2s;
}
.header-phone:hover{
    color:var(--text);
}
.header-social{
    width:44px;
    height:44px;
    flex:0 0 44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--social-bg);
    color:var(--text);
    transition:
        background .2s,
        color .2s,
        transform .2s;
}
.header-social:hover{
    background:var(--social-bg-hover);
    color:var(--accent);
    transform:translateY(-2px);
}
.header-social svg{
    width:20px;
    height:20px;
}
/* ---------- Premium - Koučinga ievads ---------- */
.coaching-page-band .container{
    padding-left:30px;
    padding-right:30px;
}
.coaching-page-band .intro-grid{
    display:grid;
    grid-template-columns:minmax(0,46%) minmax(0,1fr);
    gap:40px;
    align-items:center;
}
.coaching-page-band .intro-copy{
    padding:0;
    background:transparent;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/*.coaching-page-band .intro-copy h2{
    max-width:520px;
    margin:0 0 28px;
    font-size:clamp(2.9rem,3.8vw,3.9rem);
    line-height:.92;
    color:var(--text);
}
*/


.coaching-page-band .lead{
    display:block;
    margin:0 0 28px;
}
.coaching-page-band .about-paragraph{
    margin:0;
    max-width:none;
}
.coaching-page-band .coaching-hero-image{
    position:relative;
    padding:0;
    height:560px;
    overflow:hidden;
    border-radius:34px;
    border:1px solid rgba(47,91,75,.06);
    background:#fff;
    box-shadow:
        0 12px 30px rgba(0,0,0,.05);
}
/* Izslēdz simple-card dekoratīvo svītru tikai Premium tēmā */
.coaching-page-band .simple-card.coaching-hero-image::before{
    display:none;
    content:none;
}
.coaching-page-band .coaching-hero-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center 22%;
}
/* Koučinga process */
.koucings-process-band{
    padding:72px 0 60px;
}
.koucings-process-card{
    position:relative;
    overflow:hidden;
    padding:0;
    background:transparent;
    border:none;
    border-radius:0;
    box-shadow:none;
}
.koucings-process-head{
    grid-column:1/-1;
    max-width:820px;
    margin:0 auto 28px;
    text-align:center;
}
.koucings-process-head h2{
    margin-bottom:18px;
}
.koucings-process-head .lead{
    max-width:640px;
    margin:0 auto;
    font-size:1.08rem;
    line-height:1.75;
}
.koucings-process-flow{
    position:relative;
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:22px;
    align-items:start;
    margin-bottom:34px;
}
.process-step{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.process-icon-wrap{
    width:164px;
    height:164px;
    display:grid;
    place-items:center;
    position:relative;
    z-index:3;
    margin-bottom:-76px;
    filter:
        drop-shadow(0 8px 14px rgba(18,25,22,.045));
}
.process-icon{
    width:100%;
    height:auto;
    display:block;
    transform:translateY(-6px);
}
.process-text-card{
    position:relative;
    width:100%;
    min-height:262px;
    padding:112px 28px 28px;
    border-radius:28px;
    background:var(--surface);
    border:1px solid var(--line);
    box-shadow:
        0 10px 22px rgba(18,25,22,.03);
    text-align:center;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}
.process-step:hover .process-text-card{
    transform:translateY(-3px);
    border-color:var(--line);
    box-shadow:
        0 16px 30px rgba(18,25,22,.045);
}
.process-text-card h3{
    margin:0;
    font-weight:500;
    line-height:1;
    color:var(--text);
}
.process-divider{
    display:block;
    width:42px;
    height:2px;
    margin:14px auto 20px;
    border-radius:999px;
    background:var(--accent);
}
.process-text-card{
    color:var(--text-soft);
}
.process-text-card p{
    margin:0;
}
.koucings-process-benefits{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:54px;
    padding:20px 0 0;
    background:transparent;
    border:none;
    border-top:1px solid var(--line);
}
.process-benefit-item{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--text-soft);
    font-size:1rem;
    font-weight:500;
    line-height:1.5;
    transition:color .2s ease;
}
.process-benefit-item:hover{
    color:var(--text);
}
.process-benefit-icon{
    display:none;
}
.process-benefit-dot{
    display:none;
}
/* ---------- Koučings - GROW ---------- */
.grow-band{
    padding:80px 0 70px;
}
.grow-card{
    background:transparent;
    border:none;
    border-radius:0;
    padding:0;
    box-shadow:none;
}
.grow-head{
    max-width:760px;
    margin:0 auto 64px;
    text-align:center;
}
.grow-head h2{
    margin:0 0 18px;
    color:var(--text);
}
.grow-head .lead{
    max-width:640px;
    margin:0 auto;
    color:var(--text-soft);
}
/* -------------------------------- */
.grow-visual{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:56px;
    align-items:start;
}
/* -------------------------------- */
.grow-step{
    background:none;
    border:none;
    box-shadow:none;
    padding:0;
    min-width:0;
    text-align:center;
}
.grow-step-icon{
    display:flex;
    justify-content:center;
    align-items:center;
    height:112px;
    margin-bottom:14px;
}
.grow-step-icon img{
    width:100px;
    height:auto;
    display:block;
    filter:drop-shadow(0 8px 14px rgba(0,0,0,.05));
    transition:transform .25s ease;
}
.grow-step:hover .grow-step-icon img{
    transform:translateY(-4px);
}
.grow-step-text{
    margin:0;
    padding:0;
}
.grow-step-text h3{
    position:relative;
    margin:0 0 22px;
    font-weight:500;
    color:var(--text);
}
.grow-step-text h3::after{
    content:"";
    display:block;
    width:34px;
    height:2px;
    margin:12px auto 0;
    background:var(--accent);
}
.grow-step-text{
    color:var(--text-soft);
}
.grow-step-text p{
    max-width:26ch;
    margin:0 auto;
}
/* -------------------------------- */
.grow-arrow{
    display:none;
}
/* -------------------------------- */
.grow-summary{
    margin-top:64px;
    padding-top:28px;
    border-top:1px solid var(--line);
    text-align:center;
}
.grow-summary p{
    margin:0;
    font-style:italic;
    color:var(--text-soft);
    text-align:center;
}
/* ---------- Booking modal integration ---------- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.booking-modal.is-open {
  display: block;
}
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 36, 31, 0.42);
  backdrop-filter: blur(6px);
}
.booking-modal__dialog {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #f7f3ed;
  border-radius: 28px;
  overflow: auto;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}
.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(47, 91, 75, 0.14);
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--green);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.booking-modal__layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 720px;
}
.booking-modal__info {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,0)
    ),
    linear-gradient(
      180deg,
      var(--cta-bg-start) 0%,
      var(--cta-bg-end) 100%
    );
  color: #fff;
  padding: 42px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-modal__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.booking-modal__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 0.98;
  color: #fff;
}
.booking-modal__meta {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
}
.booking-modal__text {
  margin: 0;
  color: rgba(255,255,255,0.9);
}
.booking-modal__content {
  padding: 34px 32px 30px;
  background: #f7f3ed;
}
/* booking ui */
.booking-ui {
  display: grid;
  gap: 20px;
}
.booking-ui h3,
.booking-ui h4 {
  margin: 0 0 10px;
  color: var(--green);
}
.booking-date-input {
  width: 100%;
  max-width: 320px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(47, 91, 75, 0.18);
  background: #fbf8f4;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-slot-btn {
  min-width: 100px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(47, 91, 75, 0.16);
  background: #fff;
  color: var(--green);
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
}
.booking-slot-btn:hover {
  background: #efe8de;
  border-color: rgba(47, 91, 75, 0.26);
}
.booking-slot-btn.is-selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.booking-summary,
.booking-form-box,
.booking-success-box,
.booking-empty-box {
  padding: 0px;
  border-radius: 0px;
  background: transparent;
  border: none;
}
.booking-summary p,
.booking-success-box p,
.booking-empty-box p {
  margin: 0 0 8px;
  line-height: 1.6;
  color: var(--text-soft);
}
.booking-summary strong {
  color: var(--accent);
}
.booking-form-grid {
  display: grid;
  gap: 6px;
  max-width: 460px;
}
.booking-form-grid input,
.booking-form-grid textarea {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(47, 91, 75, 0.16);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.booking-form-grid textarea {
  min-height: 108px;
  padding-top: 14px;
  resize: vertical;
}
.booking-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 24px rgba(47, 91, 75, 0.16);
}
.booking-primary-btn:hover {
  transform: translateY(-1px);
  background: var(--green-2);
}
.booking-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid rgba(47, 91, 75, 0.16);
  background: #fff;
  color: var(--green);
  font-weight: 600;
  cursor: pointer;
}
.booking-loading,
.booking-error {
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 500;
}
.booking-loading {
  background: #efe8de;
  color: var(--green);
}
.booking-error {
  background: #f7e7e4;
  color: #8c3d33;
}
.booking-card.is-active {
  border-color: rgba(47, 91, 75, 0.22);
  box-shadow: 0 12px 28px rgba(32, 47, 41, 0.08);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.form-error {
  min-height: 12px;
  margin-top: 1px;
  font-size: 0.72rem;
  line-height: 1.15;
  color: rgba(192, 57, 43, 0.85);
}
.input-error {
  border: 1px solid rgba(192, 57, 43, 0.85) !important;
}
/* ===== Custom datepicker layout ===== */
.dp-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}
.dp-left {
  background: #fbf8f4;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(47, 91, 75, 0.12);
}
.dp-right {
  min-height: 120px;
}
/* header */
.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dp-header button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(47, 91, 75, 0.2);
  background: #fff;
  cursor: pointer;
}
/* days grid */
.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 6px;
  color: rgba(45, 53, 48, 0.55);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}
.dp-day {
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(47, 91, 75, 0.12);
  background: #fff;
  cursor: pointer;
}
.dp-day:hover {
  background: #efe8de;
}
.dp-day.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.dp-day.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
/* === JAUNIE RESPONSIVE === */
/*  === ≤1280 ============== */
@media (max-width:1280px){
  .header-inner{
    grid-template-columns:auto 1fr auto auto;
  }
  .main-nav{
    gap:20px;
  }
  .brand{
    min-width:235px;
  }
  .brand-script{
    font-size:2.5rem;
  }
  .header-contact{
    gap:10px;
  }
  .header-phone{
    font-size:.92rem;
  }
  .cta-copy{
    margin-left:0;
    width:auto;
  }
  .cta-side{
    margin-right:0;
  }
}
/* ==========================================================
   ≤1100px
   ========================================================== */
@media (max-width:1100px){

/* ---------- Container ---------- */

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

  /* ---------- Layout ---------- */

  .about-grid{
    grid-template-columns:1fr;
    align-items:start;
  }
  .about-grid{
    gap:28px;
  }
  .simple-grid{
    grid-template-columns:1fr;
  }
  /* ---------- Header ---------- */
  .header-phone{
    display:none;
  }
  /* ---------- Hero ---------- */
  .hero-card-overlay{
    min-height:500px;
  }
  .hero-copy-overlay{
    width:min(100%,860px);
    min-height:360px;
    padding:40px 0 28px 64px;
  }
  .hero-copy-overlay h1{
    max-width:100%;
    font-size:clamp(3rem,8vw,4.4rem);
  }
  .hero-soft {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(
        90deg,
        rgba(245, 239, 231, 0.84) 0%,
        rgba(245, 239, 231, 0.60) 18%,
        rgba(245, 239, 231, 0.22) 30%,
        rgba(245, 239, 231, 0.06) 40%,
        rgba(245, 239, 231, 0.00) 48%
      );
  }
/* ---------- Intro ---------- */

.intro-band .container{
    padding-left:0;
    padding-right:0;
}

.intro-grid{
  grid-template-columns:1fr;
  align-items:start;
}

.benefit-cards{
  grid-template-columns:repeat(4,1fr);
  padding:5px 0;
}

  /* ---------- Timeline ---------- */
  .timeline{
    grid-template-columns:repeat(2,1fr);
  }
  .timeline-step:not(:last-child)::after,
  .timeline-step::before{
    display:none;
  }
    /* ---------- About ---------- */
  .about-photo{
    max-width:520px;
    margin:0 auto;
  }
  .about-photo img{
    height:560px;
  }

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

.about-copy .lead{
    max-width:none;
}

  .about-facts{
    border-left:none;
    padding-left:0;
    padding-top:12px;
  }
  .about-facts ul{
    gap:22px;
  }
  /* ---------- Journey ---------- */
.journey-band{
    padding:8px 0;
}
  .journey-overlay-grid{
    grid-template-columns:1fr;
    min-height:460px;
  }
  .journey-wide-card{
    min-height:460px;
  }
  .journey-blur-left{
    background:
      linear-gradient(
        180deg,
        rgba(249,244,238,.92) 0%,
        rgba(249,244,238,.78) 24%,
        rgba(249,244,238,.34) 52%,
        rgba(249,244,238,0) 78%
      );
  }
  /* ---------- Consultation ---------- */

  .consult-cards{
    grid-template-columns:1fr;
  }
  .consult-dynamic-info{
    grid-template-columns:1fr;
  }

.consult-cards-grid{
    display:flex;
    overflow-x:auto;
    gap:16px;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
}

.consult-option-card{
    flex:0 0 72%;
    scroll-snap-align:start;
}

.consult-cards-grid::-webkit-scrollbar{
    display:none;
}

/* ---------- Consultation cards compact ---------- */

.consult-option-card{
    flex:0 0 65%;
    min-height:0;
    padding:22px;
    border-radius:22px;
}

.consult-option-top{
    margin-bottom:18px;
}

.consult-option-top h3{
    font-size:1.1rem;
    line-height:1.2;
}

.consult-option-duration{
    padding:8px 14px;
    font-size:.85rem;
}

.consult-option-card p{
    flex:0;
    font-size:.85rem;
    line-height:1.5;
}

.consult-option-btn{
    min-height:44px;
    margin-top:22px;
    font-size:.88rem;
}


/* ---------- Koučinga html ---------- */
.coaching-page-band{
    padding:8px 0;
}

.coaching-page-band .container{
    padding-left:0;
    padding-right:0;
}

.band{
    padding:8px 0;
}

    .coaching-page-band .intro-grid{
        grid-template-columns:1fr;
        gap:32px;
        align-items:start;
    }
    /* ---------- Teksts ---------- */
    .coaching-page-band .intro-copy{
        order:2;
        padding:0;
    }
   
/* .coaching-page-band .intro-copy h2{
        max-width:none;
        margin:0 0 20px;
        font-size:2.8rem;
        line-height:1.05;
    }
*/

.coaching-page-band .lead{
    margin-bottom:22px;
}

.coaching-page-band .about-paragraph{
    font-size:var(--fs-body);
    line-height:var(--lh-body);
}

    /* ---------- Attēls ---------- */
    .coaching-page-band .coaching-hero-image{
        order:1;
        height:440px;
        border-radius:28px;
    }
    .coaching-page-band .coaching-hero-image img{
        object-position:center top;
    }
/* Koučinga kartīšu teksts planšetē un telefona landscape režīmā */

.koucings-benefits .simple-card strong{
  font-size:1.45rem;
  line-height:1.2;
  margin-bottom:12px;
}

.koucings-benefits .simple-card p{
  font-size:var(--fs-body);
  line-height:var(--lh-body);
}


/* ---------- Koučinga process ---------- */

.koucings-process-flow{
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:12px;
}

  /* ---------- GROW ---------- */
  .grow-visual{
    grid-template-columns:repeat(2,1fr);
    gap:54px 40px;
  }
  /* ---------- Footer ---------- */


/* ---------- CTA ---------- */

.cta-inner{
    grid-template-columns:1fr;
    gap:16px;
    padding:22px 32px;
    min-height:auto;
    border-radius:24px 24px 0 0;
}

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

.cta-side{
    width:100%;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.cta-inner .btn{
    width:250px;
    height:52px;
    flex:0 0 250px;
    margin:0;
}

.cta-contact{
    flex-direction:row;
    align-items:center;
    gap:20px;
    margin:0;
}

.cta-phone{
    line-height:44px;
    margin:0;
}

.cta-socials{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

}
/* ==========================================================
   ≤860px
   ========================================================== */
   @media (max-width:860px){
     /* ---------- Header ---------- */
  .header-inner{
    grid-template-columns:1fr auto auto;
    min-height:84px;
  }
h1{
    font-size:2rem;
    line-height:1.08;
}

h2{
    font-size:1.8rem;
    line-height:1.1;
}

  .header-contact{
    gap:8px;
  }
  .header-social{
    width:40px;
    height:40px;
  }
  .main-nav{
    position:fixed;
    left:16px;
    right:16px;
    top:84px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:18px;
    background:rgba(251,247,242,.98);
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow-sm);
  }
  .main-nav.open{
    display:flex;
  }
  .nav-toggle{
    display:inline-flex;
  }
    /* ---------- Hero ---------- */
  .hero-card,
  .hero-card-overlay{
    min-height:470px;
  }
.hero-copy-overlay h1{
    font-size:2rem;
    line-height:1.08;
    max-width:12ch;
}
  .hero-lead{
    max-width:28ch;
    font-size:.92rem;
    line-height:1.4;
  }
  .hero-actions{
    width:100%;
    gap:14px;
  }
    /* ---------- Timeline ---------- */
  .timeline{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
  .timeline-step{
    padding-top:18px;
  }
  /* ---------- About ---------- */

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

/* ---------- Koučinga process ---------- */

.koucings-process-flow{
    grid-template-columns:1fr;
    gap:20px;
}

/* ---------- CTA ---------- */

.cta-side{
  width:100%;
  align-items:stretch;
}

.cta-contact{
  align-items:flex-start;
  gap:14px;
}

.cta-inner .btn{
  width:100%;
}


  /* ---------- Booking ---------- */
  .booking-modal__layout{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .booking-modal__info{
    padding:32px 22px 24px;
  }
  .booking-modal__content{
    padding:24px 22px;
  }
  .dp-layout{
    grid-template-columns:1fr;
  }
.consult-hero-box,
.consult-section-head,
.consult-cards,
.consult-select-wrap{
    padding-left:22px;
    padding-right:22px;
}
.consult-dynamic-info{
    margin-left:22px;
    margin-right:22px;
}
  .consult-cards-grid{
    display:flex;
    overflow-x:auto;
    gap:16px;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
  }
  .consult-option-card{
    flex:0 0 85%;
    scroll-snap-align:start;
  }
  .consult-cards-grid::-webkit-scrollbar{
    display:none;
  }
  #konsultacijas{
    scroll-margin-top:120px;
  }
}

  /* ==========================================================
   ≤560px
   ========================================================== */
@media (max-width:560px){

  /* ---------- Container ---------- */

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

.intro-band .container{
        padding-left:0;
        padding-right:0;
    }

.intro-band{
    padding:8px 0 0px;
}

  /* ---------- Header ---------- */

  .header-inner{
    grid-template-columns:1fr auto auto;
    gap:10px;
    min-height:auto;
    padding-top:12px;
    padding-bottom:12px;
  }

  .brand{
    min-width:0;
    max-width:250px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .brand-script{
    font-size:2.7rem;
    line-height:.9;
  }

  .brand-sub{
    font-size:.52rem;
    line-height:1.35;
    letter-spacing:.14em;
  }

  .lang-switch{
    display:none;
  }

  .header-contact{
    display:grid;
    grid-template-columns:repeat(2,36px);
    gap:6px;
    justify-content:end;
  }

  .header-phone{
    display:none;
  }

  .header-social{
    width:36px;
    height:36px;
  }

  .header-social svg{
    width:20px;
    height:20px;
  }

  .nav-toggle{
    width:42px;
    height:42px;
  }

    /* ---------- Hero ---------- */

  .hero-bg img{
    object-position:70% 27%;
  }

  .hero-card,
  .hero-card-overlay{
    min-height:430px;
  }

  .hero-copy-overlay{
    min-height:430px;
    padding:28px 18px 24px;
  }

  .hero-lead{
    max-width:24ch;
    font-size:.92rem;
  }

  .btn{
    width:100%;
  }

  /* ---------- Intro ---------- */

  .intro-grid{
    gap:8px;
  }

  .intro-copy{
    padding:8px 20px 8px;
  }

  .benefit-cards{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    padding:0 0 26px;
  }

  .benefit-card{
    min-height:170px;
    padding:14px 10px 12px;
    gap:10px;
  }

  .benefit-card p{
    font-size:1.02rem;
    line-height:1.48;
    max-width:15ch;
  }

  .icon-circle,
  .icon-circle--compass{
    width:72px;
    height:72px;
    flex:0 0 72px;
  }

.icon-circle img{
    width:50px;
    height:50px;
}

  .icon-circle--compass .icon-compass{
    width:50px;
    height:50px;
    transform:scale(2.45);
  }

.list-panel,
.image-copy {
    padding: 28px 20px 8px;
}

.list-panel-overlay,
.image-copy-overlay {
    padding-left: 20px;
    padding-right: 20px;
}

.journey-col{
    padding:20px;
}

 /* ----------Konsultāciju kartiņas ---------- */


.consult-option-card{
    min-height:370px;
    padding:28px;
    border-radius:24px;
}

.consult-option-top{
    margin-bottom:22px;
}

.consult-option-top h3{
    font-size:1.45rem;
}

.consult-option-top .duration{
    font-size:1.5rem;
}

.consult-option-card p{
    font-size:0.95rem;
    line-height:1.6;
}

.consult-option-btn{
    font-size:0.95rem;
    padding:12px 18px;
}


    /* ---------- Timeline ---------- */

  .timeline{
    grid-template-columns:1fr;
    gap:14px;
  }

  .about-band .container,
  .timeline-band .container{
    padding-top:20px;
    padding-bottom:20px;
  }

  /* ---------- About ---------- */

  .about-photo{
    max-width:100%;
  }

  .about-photo img{
    height:420px;
  }

  .about-facts{
    padding:26px 20px;
  }

  .about-band{
        padding:4px 0;
    }

  .about-photo img{
        height:420px;
	width:100%;
    }

  /* ---------- CTA ---------- */

  
.cta-inner{
    padding:20px 18px;
    gap:20px;
}

.cta-copy h2{
    font-size:clamp(1.6rem,6vw,2rem);
    line-height:1.15;
}

.cta-copy p{
    font-size:0.95rem;
    line-height:1.6;
}

.cta-inner .btn{
    width:100%;
    height:48px;
    min-height:48px;
    flex:0 0 auto;
    font-size:0.95rem;
    padding:0 24px;
}

.cta-side{
    flex-direction:column;
    align-items:stretch;
}

  .cta-socials{
    gap:8px;
  }

  /* ---------- Booking ---------- */

  .booking-modal__dialog{
    width:100%;
    height:100%;
    max-height:100%;
    margin:0;
    border-radius:0;
  }

  .booking-modal__layout{
    width:100%;
  }

  .booking-modal__content{
    padding:20px 16px;
    overflow-x:hidden;
  }

  .booking-modal__close{
    top:12px;
    right:12px;
  }

  .booking-modal__title{
    font-size:2rem;
  }

  .dp-grid{
    grid-template-columns:repeat(7,minmax(0,1fr));
    gap:4px;
    width:100%;
  }

  .dp-day{
    width:100%;
    min-width:0;
    height:32px;
    font-size:.85rem;
  }

  .booking-slots{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    width:100%;
  }

  .booking-slot-btn{
    width:100%;
    min-width:0;
    padding:10px 0;
    font-size:.95rem;
  }

  .booking-form-grid input,
  .booking-form-grid textarea{
    font-size:16px;
  }

}
