/*
Theme Name: Sunu Dresavimas
Version: 1.0
*/

/* ===== Base / Reset ===== */
:root{
  --color-gold: #c4aa4f;
  --color-gold-light: rgba(196, 170, 79, 0.28);
  --color-gold-medium: rgba(196, 170, 79, 0.45);
  --color-gold-dark: rgba(196, 170, 79, 0.85);
  --color-maroon: #6e2626;
  --color-dark-bg: rgba(40, 32, 29, 0.75);
  --footer-bg: #2a221f;
  --footer-text: rgba(255,255,255,0.80);

  --container: min(1200px, 92vw);
}

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

html, body{
  margin: 0;
  padding: 0;
  font-family: 'Oxygen', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

/* ===== INNER PAGE HERO ===== */
.inner-hero{
  position: relative;
  min-height: 320px;
  background: #111;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  text-align: center;
}

.inner-hero__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.45);
}

.inner-hero__inner{
  position: relative;
  z-index: 2;
  width: var(--container);
  padding: 70px 0 40px;
}

.inner-hero__title{
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(38px, 4.8vw, 64px);
  color: var(--color-gold);
  text-shadow: 0 16px 38px rgba(0,0,0,0.45);
}

.inner-hero__crumbs ol{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 10px;
}

.inner-hero__crumbs li{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,0.80);
  font-weight: 700;
  font-size: 15px;
}

.inner-hero__crumbs a{
  color: rgba(255,255,255,0.90);
  text-decoration:none;
}

.inner-hero__crumbs a:hover{ color:#fff; }
.inner-hero__sep{ color: rgba(255,255,255,0.45); }

@media (max-width: 640px){
  .inner-hero__inner{ padding: 60px 0 32px; }
  .inner-hero{ min-height: 260px; }
}

/* ===== HEADER / NAV (desktop) ===== */
.hp-header{
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 50;

  width: var(--container);
  margin: 0 auto;

  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | nav | burger (burger hidden on desktop) */
  align-items: center;
  gap: 28px;
  padding: 0;
}

.hp-logo a{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.hp-logo img{
  height: 62px;
  width: auto;
  display:block;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.35));
}

/* Burger hidden on desktop */
.hp-burger{
  display:none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}

.hp-burger__lines{
  display:block;
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  position: relative;
  border-radius: 2px;
}

.hp-burger__lines::before,
.hp-burger__lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
  transition: transform .22s ease, top .22s ease, opacity .22s ease;
}

.hp-burger__lines::before{ top: -8px; }
.hp-burger__lines::after{ top: 8px; }

/* Nav wrapper + menu */
.hp-nav{
  display:flex;
  justify-content:center;
  position: relative;
}

.hp-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap: 44px;
}

.hp-menu li{
  margin:0;
  padding:0;
  position: relative;
}

.hp-menu a{
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0 14px 28px rgba(0,0,0,0.35);
  position: relative;
  display:inline-flex;
  align-items:center;
  padding: 10px 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.hp-menu a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* Active underline (clean + correct) */
.hp-menu .current-menu-item > a::after,
.hp-menu .current_page_item > a::after{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--color-gold);
}

/* Subtle hover underline (optional) */
.hp-menu li > a::before{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--color-gold);
  opacity: .45;
  transition: transform .22s ease, opacity .22s ease;
}

.hp-menu li:hover > a::before{
  transform: translateX(-50%) scaleX(1);
  opacity: .6;
}

/* Overlay for mobile drawer */
.hp-nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display:none;
}



/* ===== MOBILE NAV DRAWER (single source of truth) ===== */
@media (max-width: 980px){
  /* header becomes normal bar */
  .hp-header{
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0px;
    grid-template-columns: auto 1fr auto;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(6px);
  }

  .hp-burger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
	z-index: 99999;
  }

  /* Drawer nav */
  .hp-nav{
	display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 1001;
    padding: 90px 22px 22px;
    justify-content: initial;
  }
  .hp-menu ul {
	padding: 0;
  }

  .hp-nav.is-open {
	display: block;
  }
  body.nav-open .hp-nav{ transform: translateX(0); }
  body.nav-open .hp-nav-overlay{ display:block; }

  .hp-menu{
    display:flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hp-menu li{
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }

  .hp-menu a{
    padding: 16px 8px;
    text-shadow: none;
    transform: none;
  }

  /* Mobile active style */
  .hp-menu .current-menu-item > a::after,
  .hp-menu .current_page_item > a::after{
    display:none;
  }
  .hp-menu .current-menu-item > a,
  .hp-menu .current_page_item > a{
    color: var(--color-gold);
  }

  /* burger -> X */
  body.nav-open .hp-burger__lines{ background: transparent; }
  body.nav-open .hp-burger__lines::before{ top: 0; transform: rotate(45deg); }
  body.nav-open .hp-burger__lines::after{ top: 0; transform: rotate(-45deg); }
}

/* ===== SERVICES (homepage + shared cards) ===== */
.hp-services{
  background: #f6f1e7;
  padding: 70px 0 80px;
}

.hp-services__inner{
  width: var(--container);
  margin: 0 auto;
  position: relative;
}

/* Horizontal scroll track (home) */
/* .hp-services__track-wrap{ position: relative; } */

.hp-service__card:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(0,0,0,0.14);
}

.hp-service__img img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display:block;
}

.hp-service__body{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 22px 24px 24px;
}

.hp-service__title{
  margin: 0;
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.05;
  color: #2a2622;
}

.hp-service__arrow{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--color-gold);
  color: #fff;
  display:grid;
  place-items:center;
  font-weight: 900;
  font-size: 26px;
  flex: 0 0 auto;
}

.hp-services__next{
  position:absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--color-maroon);
  color:#fff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(0,0,0,0.18);
  transition: transform .2s ease, filter .2s ease;
}

.hp-services__next:hover{
  transform: translateY(-50%) translateY(-2px);
  filter: brightness(1.03);
}

.hp-services__cta{
  display:flex;
  justify-content:center;
  margin-top: 46px;
}

.hp-services__cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 34px;
  border-radius: 999px;
  background: var(--color-maroon);
  color:#fff;
  font-weight: 400;
  text-decoration:none;
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hp-services__cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(0,0,0,0.18);
}

/* Archive grid */
.hp-services__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.hp-services--archive{ padding-top: 60px; }
.hp-services--archive .hp-service{ min-width: 0; }
.hp-services--archive .hp-services__next{ display:none; }

@media (max-width: 1100px){
  .hp-services__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px){
  .hp-services__grid{ grid-template-columns: 1fr; }
}

/* ===== BLOG ARCHIVE ===== */
.blog-archive{
  background:#fff;
  padding: 70px 0 90px;
}

.blog-archive__inner{
  width: var(--container);
  margin: 0 auto;
}

.blog-archive__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.blog-card{
  background:#fff;
  border-radius: 2px;
  overflow:hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
  display:flex;
  flex-direction:column;
}

.blog-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.14);
}

.blog-card__thumb img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.blog-card__body{
  padding: 26px 26px 24px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.blog-card__meta{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
}

.blog-card__date{ color: var(--color-gold); }
.blog-card__sep{ color: rgba(42,38,34,0.35); }
.blog-card__cat{ color: rgba(42,38,34,0.75); }

.blog-card__title{
  margin:0;
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.08;
  color: #2a2622;
}

.blog-card__title a{
  color: inherit;
  text-decoration:none;
}

.blog-card__title a:hover{ text-decoration: underline; }

.blog-card__excerpt{
  color: rgba(42,38,34,0.72);
  line-height: 1.75;
  font-size: 15px;
}

.blog-card__btn{
  margin-top: 8px;
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--color-maroon);
  color:#fff;
  text-decoration:none;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(0,0,0,0.18);
}

.blog-archive__pagination{ margin-top: 34px; }

.blog-archive__pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  margin-right: 8px;
  text-decoration:none;
  font-weight: 800;
  color: rgba(42,38,34,0.8);
  background: rgba(0,0,0,0.06);
}

.blog-archive__pagination .page-numbers.current{
  background: var(--color-gold);
  color: #fff;
}

@media (max-width: 980px){
  .blog-archive__grid{ grid-template-columns: 1fr; }
  .blog-card__thumb img{ height: 220px; }
  .blog-card__title{ font-size: 28px; }
}

/* ===== SINGLE POST ===== */
.single-post{ background:#fff; }

.single-post__thumb{
  max-width: 1200px;
  margin: 0 auto 50px;
}

.single-post__thumb img{
  width:100%;
  display:block;
  border-radius: 2px;
}

.single-post__inner{
  width: min(820px, 92vw);
  margin: 0 auto;
}

.single-post__title{
  margin: 0 0 34px;
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.08;
  color: #2a2622;
}

.single-post__content{
  font-size: 17px;
  line-height: 1.85;
  color: rgba(42,38,34,0.85);
}

.single-post__content p{ margin-bottom: 26px; }

.single-post__content h2,
.single-post__content h3{
  margin-top: 54px;
  margin-bottom: 18px;
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 900;
  color: #2a2622;
}

.single-post__content h2{ font-size: 30px; }
.single-post__content h3{ font-size: 24px; }

.single-post__footer{
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.single-post__cats,
.single-post__tags{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  font-weight: 800;
}

.single-post__cats span,
.single-post__tags span{ color: rgba(42,38,34,0.6); }

.single-post__cats a,
.single-post__tags a{
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  text-decoration:none;
  color: rgba(42,38,34,0.8);
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}

.single-post__cats a:hover,
.single-post__tags a:hover{
  background: var(--color-gold);
  color:#fff;
}

/* ===== ABOUT PAGE ===== */
.about-page{
  background:#fff;
  padding: 80px 0 90px;
}

.about-page__inner{
  width: var(--container);
  margin: 0 auto;
  position: relative;
}

.about-page__grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items:start;
  position: relative;
  z-index: 2;
}

.about-page__title{
  margin: 0 0 22px;
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.02;
  color: var(--color-maroon);
}

.about-page__text{
  color: rgba(42,38,34,0.82);
  font-size: 15px;
  line-height: 1.75;
  max-width: 520px;
}

.about-page__sig{
  margin-top: 30px;
  font-weight: 700;
  color: rgba(42,38,34,0.85);
}

.about-page__btn{
  margin-top: 50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--color-gold);
  color:#fff;
  text-decoration:none;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.about-page__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(0,0,0,0.16);
}

.about-page__img{
  border: 7px solid #efe6d0;
  background: #efe6d0;
  box-shadow: 0 24px 52px rgba(0,0,0,0.12);
}

.about-page__img img{ display:block; }

.about-page__watermark{
  position:absolute;
  left: 12%;
  bottom: 25%;
  width: 25%;
  opacity: 0.75;
  pointer-events:none;
  user-select:none;
  z-index: 1;
}

@media (max-width: 980px){
  .about-page__grid{ grid-template-columns: 1fr; gap: 36px; }
  .about-page__watermark{
    left: 50%;
    transform: translateX(-50%);
    bottom: 90px;
    width: 480px;
  }
  .about-page__btn{ margin-top: 30px; }
}

/* ===== STATS SECTION ===== */
.hp-stats{
  position: relative;
  background: #111;
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  overflow:hidden;
}

.hp-stats__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.35);
}

.hp-stats__inner{
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  text-align:center;
}

.hp-stats__kicker{
  color: var(--color-gold);
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 18px;
  text-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.hp-stats__title{
  margin: 0 0 12px;
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(38px, 4.2vw, 56px);
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.hp-stats__subtitle{
  color: rgba(255,255,255,1);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 58px;
  text-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.hp-stats__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  align-items:end;
}

.hp-stat__num{
  font-weight: 900;
  font-size: clamp(60px, 6vw, 108px);
  line-height: 1;
  color: var(--color-gold);
  text-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.hp-stat__label{
  margin-top: 18px;
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 900;
  font-size: 16px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.hp-stats__cta{ margin-top: 54px; display:flex; justify-content:center; }

.hp-stats__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 44px;
  border-radius: 999px;
  background: var(--color-maroon);
  color:#fff;
  text-decoration:none;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hp-stats__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 44px rgba(0,0,0,0.28);
}

@media (max-width: 980px){
  .hp-stats{ padding: 90px 0; }
  .hp-stats__grid{ grid-template-columns: repeat(2, 1fr); gap: 40px 34px; }
  .hp-stat__label{ font-size: 22px; }
}
@media (max-width: 560px){
  .hp-stats__grid{ grid-template-columns: 1fr; gap: 28px; }
}

/* ===== ORGS SECTION ===== */
.seperator-about{
  height: 20vh;
  background: var(--color-gold-light);
}

.hp-orgs{
  background:#fff;
  padding: 90px 0 80px;
}

.hp-orgs__inner{
  width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 40px;
  align-items:center;
}

.hp-orgs__title{
  margin: 0 0 18px;
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(52px, 5.5vw, 86px);
  line-height: 0.95;
  color: #2a2622;
}

.hp-orgs__text{
  margin: 0;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(42, 38, 34, 0.72);
}

.hp-orgs__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  justify-items:center;
}

.hp-org__abbr{
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(32px, 3vw, 56px);
  color: #2a2622;
  margin-bottom: 16px;
}

.hp-org__logo img{
  max-width: 140px;
  width: 100%;
  opacity: 0.95;
  transition: transform .25s ease, opacity .25s ease;
}

.hp-org__logo:hover img{
  transform: translateY(-2px);
  opacity: 1;
}

@media (max-width: 980px){
  .hp-orgs__inner{ grid-template-columns: 1fr; gap: 28px; }
  .hp-orgs__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
  .hp-orgs__title{ font-size: 56px; }
}
@media (max-width: 600px) {
	.hp-org {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
}

/* ===== CONTACT PAGE ===== */
.contact-page{
  background:#fff;
  padding: 5em 0 0;
}

.contact-page__inner{
  width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items:start;
}

.contact-page__title{
  margin: 0 0 22px;
  font-weight: 700;
  font-size: clamp(36px, 1.6vw, 60px);
  color: #2a2622;
}

.contact-page__hours{
  font-weight: 400;
  color: #2a2622;
  margin-bottom: 34px;
}

.contact-page__hours p{
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.contact-page__note{
  margin: 0 0 34px;
  font-weight: 900;
  color: #2a2622;
  font-size: 22px;
  line-height: 1.25;
  max-width: 420px;
}

.contact-page__details{
  list-style:none;
  margin: 0 0 42px;
  padding:0;
  display:grid;
  gap: 16px;
}

.contact-page__details li{
  display:flex;
  gap: 16px;
  align-items:center;
  color: #2a2622;
  font-weight: 800;
}

.contact-page__details a{
  color:#2a2622;
  text-decoration:none;
  transition: color ease-in-out 0.32s;
}


.contact-page__details a:hover{ 
	color: var(--color-gold);
	transition: color ease-in-out 0.32s;
 }

.contact-social{
	margin-top: 20px;
  background: var(--color-gold) !important;
}

.contact-socials .social{
  width: 44px;
  height: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  border-radius: 2px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.10);
  transition: transform .2s ease, filter .2s ease;
}

.contact-socials .social svg{
  width: 18px;
  height: 18px;
  display:block;
  fill: currentColor;
}

.contact-socials .social:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Right panel */
.contact-page__form{
  background: #f6f1e7;
  border-radius: 10px;
  padding: 36px 34px 44px;
  box-shadow: 0 34px 80px rgba(0,0,0,0.10);
}
@media (min-width: 980px) {
	.hp-nav ul {
    display: flex;
    flex-direction: row;
    gap: 44px;
    list-style: none;
	padding: 0;
}
.hp-header{
	width: (--container);
}
.hp-menu a {
	padding: 6px 12px;
}
}
/* Responsive contact */
@media (max-width: 1050px){
  .contact-page__inner{ grid-template-columns: 1fr 460px; gap: 50px; }
}
@media (max-width: 900px){
  .contact-page__inner{ grid-template-columns: 1fr; gap: 36px; }
  .contact-page__form{ padding: 28px 20px 36px; }
  .contact-page__note{ max-width: none; }
}

/* ===== FOOTER ===== */
.site-footer{ overflow:hidden; }

.site-footer__top{
  background: var(--footer-bg);
  padding: 54px 0 70px;
}

.site-footer__inner{
  width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 40px;
  align-items:start;
}

.site-footer__logo img{
  width: min(200px, 90%);
  display:block;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.35));
}

.site-footer__content{
  display:flex;
  flex-direction:row;
  gap: 50px;
}

.site-footer__socials{
  display:flex;
  justify-content:flex-start;
  gap: 12px;
  padding-left: 2px;
}

.site-footer__social{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.06);
  transition: transform .25s ease, background-color .25s ease, opacity .25s ease;
  color:#fff;
  text-decoration:none;
  opacity:0.95;
}

.site-footer__social svg{
  width: 16px;
  height: 16px;
  display:block;
  fill: currentColor;
}

.site-footer__social:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  opacity: 1;
}

.site-footer__cols{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 46px;
  align-items:start;
}

.site-footer__heading{
  font-family: 'Oxygen', "Times New Roman", serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.site-footer__menu,
.site-footer__posts{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.site-footer__menu a,
.site-footer__posts a{
  color: #fff;
  text-decoration:none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  transition: color ease-in-out 0.32s;
}

.site-footer__menu a::before{
  content:"›";
  color: var(--color-gold);
  font-weight: 900;
  margin-right: 8px;
}

.site-footer__menu a:hover,
.site-footer__posts a:hover{
  color: var(--color-gold);
  transition: color ease-in-out 0.32s;
}

.site-footer__bottom{
  background: var(--color-gold);
  padding: 18px 0;
}

.site-footer__bottom-inner{
  width: var(--container);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
}

.site-footer__copy{
  color: rgba(0,0,0,0.70);
  font-weight: 400;
  font-size: 10px;
}

.site-footer__bottom-logo img{
  height: 26px;
  opacity: 0.9;
  display:block;
}

.hp-menu-footer ul {
    padding: 0;
    list-style: none;
}
.hp-menu-footer ul li {
	margin-bottom: 10px;
}
.hp-menu-footer ul a {
color: #fff;
text-decoration: none;
font-size: 14px;
margin: 0 5px 10px 0;
transition: color ease-in-out 0.32s;
}
.hp-menu-footer ul a:hover {
	color: var(--color-gold);
	transition: color ease-in-out 0.32s;
}

.hp-menu-footer ul a::before {
	content: ">";
	color: var(--color-gold);
	margin-right: 5px;
}
@media (max-width: 980px){
  .site-footer__inner{ grid-template-columns: 1fr; gap: 26px; }
  .site-footer__socials{ justify-content:center; }
  .site-footer__cols{ grid-template-columns: 1fr; gap: 26px; }
}
 /* Contact form */
 input.wpcf7-form-control {
    border: none;
    font-size: 16px;
    border-radius: 6px;
    line-height: 2;
}
textarea.wpcf7-form-control.wpcf7-textarea.cf7-textarea {
	border: none;
	border-radius: 6px;
}
label.cf7-label {
	font-size: 14px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.cf7-btn {
    background: var(--color-maroon);
    color: #fff;
    padding: 5px 25px;
	cursor: pointer;
	transition: transform ease-in-out 0.45s;
}

	input.wpcf7-form-control.wpcf7-submit.has-spinner.cf7-btn:hover{
		transform: scale(1.03);
		transition: transform ease-in-out 0.45s;
	}

	/* ===== SERVICES SLIDER (3 visible) ===== */

.hp-services__track{
  /* keep your existing track styles, but replace the sizing logic */
  display: grid;
  grid-auto-flow: column;

  /* 3 cards visible: (track width - 2 gaps) / 3 */
  grid-auto-columns: calc((100% - (36px * 2)) / 3);
  gap: 36px;

  overflow-x: auto;
  /* scroll-behavior: smooth;
  scroll-snap-type: x mandatory; */


  margin: 0;

  /* nicer touch/trackpad scrolling */
  -webkit-overflow-scrolling: touch;
}

.hp-services__track{
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/old Edge */
}

.hp-services__track::-webkit-scrollbar{
  display: none;                  /* Chrome/Safari */
}


.hp-service{
  min-width: 0; /* IMPORTANT with grid-auto-columns */
  /* scroll-snap-align: start; */
}

/* Card keeps your existing style */
.hp-service__card{
  height: 100%;
}

/* ===== breakpoints: 2 visible ===== */
@media (max-width: 980px){
  .hp-services__track{
    grid-auto-columns: calc((100% - 22px) / 2);
    gap: 22px;
  }
}

/* ===== breakpoints: 1 visible ===== */
@media (max-width: 680px){
  .hp-services__track{
    grid-auto-columns: 100%;
    gap: 16px;
    padding-right: 0;
  }
  .hp-services__next{
    display: none; /* optional, can keep if you want */
  }
  .site-footer__col.posts {
	display: none;
  }
  .site-footer__content {
	flex-direction: column-reverse;
	gap: 25px;
  }
  a.site-footer__logo {
	display: flex;
	justify-content: center;
  }

  .paslauga-template-default article {
    flex-direction: column-reverse;
    display: flex;
    padding-top: 50px;
}

	.single-post__inner {
		width: 100%;
	}
}

.paslauga-template-default article, .post-template-default article {
    padding: 5% 30% 5% 20%;
}