@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@500;700;900&family=Manrope:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

:root{
  --sg-green:       #2E7CD6;
  --sg-green-dark:  #1E5AA8;
  --sg-green-tint:  #EDF4FC;
  --sg-ink:         #14181A;
  --sg-mist:        #6B7573;
  --sg-border:      #E7EAE6;
  --sg-paper:       #FFFFFF;

  --font-display: 'Unbounded', sans-serif;
  --font-body:    'Manrope', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

*{ margin:0; padding:0; box-sizing:border-box; }
body{ font-family: var(--font-body); color: var(--sg-ink); background: var(--sg-paper); overflow-x:hidden; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
img{ display:block; max-width:100%; }
.wrap{ max-width:1180px; margin:0 auto; padding:0 5vw; }
.wrap--wide{ max-width:1440px; }

/* ==========================================================================
   Nav — fixed, transparent+white over the hero, solid+black once scrolled
   ========================================================================== */
.sg-nav{
  position: fixed; top:0; left:0; right:0; z-index:50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.sg-nav.is-scrolled{
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--sg-border);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.sg-nav__inner{
  max-width:1180px; margin:0 auto; padding: 1.7rem 5vw;
  display:flex; align-items:center; justify-content:space-between;
  transition: padding .3s ease;
}
.sg-nav.is-scrolled .sg-nav__inner{ padding: 1.1rem 5vw; }
.sg-nav__logo img{
  height:48px;
  filter: brightness(0) invert(1); /* white, for over the photo */
  transition: filter .3s ease, height .3s ease;
}
.sg-nav.is-scrolled .sg-nav__logo img{
  height:38px;
  filter: invert(1); /* white source logo -> black, for the solid white bar */
}
.sg-nav__links{ display:flex; gap:2.4rem; }
.sg-nav__links a{
  font-family: var(--font-mono);
  font-size:.98rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: #fff;
  padding-bottom:.3rem;
  border-bottom:2px solid transparent;
  transition: border-color .2s ease, color .3s ease;
}
.sg-nav.is-scrolled .sg-nav__links a{ color: var(--sg-ink); }
.sg-nav__links a:hover{ border-color: var(--sg-green); color: var(--sg-green-dark); }

/* Dropdown - "Aktivitātes" nav item revealing each activity's own page */
.sg-nav__dropdown{ position:relative; }
.sg-nav__dropdown-toggle{
  display:inline-flex;
  align-items:center;
  gap:.4em;
  cursor:pointer;
  font-family: var(--font-mono);
  font-size:.98rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: #fff;
  padding-bottom:.3rem;
  border-bottom:2px solid transparent;
  transition: border-color .2s ease, color .3s ease;
}
.sg-nav.is-scrolled .sg-nav__dropdown-toggle{ color: var(--sg-ink); }
.sg-nav__dropdown:hover .sg-nav__dropdown-toggle,
.sg-nav__dropdown:focus-within .sg-nav__dropdown-toggle{ border-color: var(--sg-green); color: var(--sg-green-dark); }
.sg-nav__dropdown-toggle svg{ width:12px; height:12px; transition: transform .2s ease; }
.sg-nav__dropdown:hover .sg-nav__dropdown-toggle svg,
.sg-nav__dropdown:focus-within .sg-nav__dropdown-toggle svg{ transform: rotate(180deg); }
.sg-nav__dropdown-menu{
  position:absolute;
  top: 100%;
  left:50%;
  transform: translateX(-50%);
  padding-top:1rem;
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
}
.sg-nav__dropdown:hover .sg-nav__dropdown-menu,
.sg-nav__dropdown:focus-within .sg-nav__dropdown-menu{
  opacity:1;
  pointer-events:auto;
}
.sg-nav__dropdown-menu__inner{
  background:#fff;
  border-radius:12px;
  box-shadow: 0 20px 44px rgba(20,24,26,.16);
  padding:.6rem;
  min-width:220px;
}
.sg-nav__dropdown-menu a{
  display:block;
  padding:.65em .9em;
  border-radius:8px;
  font-family: var(--font-mono);
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: var(--sg-ink) !important;
  border-bottom:none !important;
  white-space:nowrap;
}
.sg-nav__dropdown-menu a:hover{ background: var(--sg-green-tint); color: var(--sg-green-dark) !important; }
.sg-nav__burger{
  display:none;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  padding:.4rem;
  transition: color .3s ease;
}
.sg-nav.is-scrolled .sg-nav__burger{ color: var(--sg-ink); }
.sg-nav__burger svg{ width:26px; height:26px; }

/* ==========================================================================
   Mobile drawer
   ========================================================================== */
.sg-drawer{
  position:fixed; top:0; right:0; bottom:0;
  width: min(78vw, 320px);
  background:#fff;
  z-index:70;
  box-shadow: -8px 0 30px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.16,.84,.44,1);
  padding: 5.5rem 2rem 2rem;
  display:flex;
  flex-direction:column;
}
.sg-drawer.is-open{ transform: translateX(0); }
.sg-drawer__close{
  position:absolute; top:1.6rem; right:1.6rem;
  background:none; border:none; cursor:pointer;
  color: var(--sg-ink);
  padding:.3rem;
}
.sg-drawer__close svg{ width:22px; height:22px; }
.sg-drawer__links{ display:flex; flex-direction:column; gap:1.6rem; }
.sg-drawer__links a{
  font-family: var(--font-mono);
  font-size:1rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: var(--sg-ink);
}
.sg-drawer__links a:hover{ color: var(--sg-green-dark); }
.sg-drawer__label{
  font-family: var(--font-mono);
  font-size:1rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: var(--sg-ink);
}
.sg-drawer__sublist{
  display:flex;
  flex-direction:column;
  gap:1rem;
  margin-top:1rem;
  padding-left:1.2rem;
  border-left:2px solid var(--sg-border);
}
.sg-drawer__sublist a{ font-size:.85rem; font-weight:600; }
.sg-drawer__backdrop{
  position:fixed; inset:0;
  background: rgba(10,14,12,.5);
  z-index:60;
  opacity:0;
  pointer-events:none;
  transition: opacity .35s ease;
}
.sg-drawer__backdrop.is-open{ opacity:1; pointer-events:auto; }
body.sg-drawer-open{ overflow:hidden; }

/* ==========================================================================
   Hero — full-width background photo, centered text
   ========================================================================== */
.sg-hero{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 100vh;
  background-size:cover;
  background-position:center;
  text-align:center;
  overflow:hidden;
}
.sg-hero__scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,14,12,.35) 0%, rgba(10,14,12,.55) 60%, rgba(10,14,12,.75) 100%);
}
.sg-hero__text{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  max-width:640px;
  padding: 2rem 6vw;
}
.sg-hero__eyebrow{
  font-family: var(--font-mono);
  font-size:.78rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color: #B9F26B;
  margin-bottom:1.2rem;
}
.sg-hero__title{
  font-family: var(--font-display);
  font-weight:900;
  text-transform:uppercase;
  line-height:1.08;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  color:#fff;
}
.sg-hero__title span{ display:block; }
.sg-hero__title span.accent{ color: #6FC3E8; }
.sg-hero__desc{
  font-size:1.1rem;
  color: #E7ECE6;
  max-width:42ch;
  margin: 1.6rem 0 2.2rem;
  line-height:1.6;
}

/* ==========================================================================
   Buttons / links
   ========================================================================== */
.sg-btn{
  display:inline-flex;
  align-items:center;
  gap:.8em;
  padding: 1.25em 2.8em;
  background: transparent;
  border: 1.5px solid #6FC3E8;
  color:#fff;
  font-weight:600;
  font-size:1rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  border-radius: 6px;
  width:fit-content;
  backdrop-filter: blur(2px);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.sg-btn span{ transition: transform .25s ease; }
.sg-btn:hover{
  background: #6FC3E8;
  border-color: #6FC3E8;
  color: var(--sg-ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(166,227,86,.28);
}
.sg-btn:hover span{ transform: translateX(3px); }
.sg-btn--outline{
  border-color: var(--sg-ink);
  color: var(--sg-ink);
}
.sg-btn--outline:hover{
  background: var(--sg-ink);
  border-color: var(--sg-ink);
  color:#fff;
  box-shadow: 0 10px 28px rgba(20,24,26,.2);
}

.sg-link{
  display:inline-flex;
  align-items:center;
  gap:.4em;
  font-weight:700;
  font-size:.92rem;
  color: var(--sg-green-dark);
  border-bottom:2px solid var(--sg-green);
  padding-bottom:.15em;
  width:fit-content;
}
.sg-link:hover{ color: var(--sg-green); }

/* ==========================================================================
   Section heading
   ========================================================================== */
.sg-section{ padding: 5.5rem 0; }
.sg-section--tint{ background: var(--sg-green-tint); }
.sg-heading{
  text-align:center;
  margin-bottom: 3rem;
}
.sg-heading__eyebrow{
  font-family: var(--font-mono);
  font-size:.72rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color: var(--sg-green-dark);
  margin-bottom:.7rem;
}
.sg-heading h2{
  font-family: var(--font-display);
  font-weight:800;
  text-transform:uppercase;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}
.sg-heading__rule{
  width:56px; height:3px;
  background: var(--sg-green);
  margin: 1rem auto 0;
  border-radius:2px;
}
.sg-heading--big{ font-size: clamp(2rem, 3.6vw, 3rem) !important; }

/* ==========================================================================
   About ("Kas ir sBalance?") — given real visual weight: tinted band,
   bigger type, bordered/shadowed cards with a colored top accent
   ========================================================================== */
.sg-section--about{
  background: var(--sg-green-tint);
  padding: 6.5rem 0;
}
.sg-about__intro{
  max-width:70ch;
  margin: 0 auto 3.6rem;
  text-align:center;
  font-size:1.25rem;
  color: var(--sg-ink);
  line-height:1.75;
}
.sg-canal__text{
  max-width:70ch;
  margin: 0 auto;
  text-align:center;
  font-size:1.1rem;
  color: var(--sg-ink);
  line-height:1.8;
}

/* ==========================================================================
   Activity page - header, content + carousel, inclusions, sidebar card
   ========================================================================== */

/* Page header */
.ap-header{ padding-bottom: 2.4rem; }
.ap-header__eyebrow{
  font-family: var(--font-mono);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--sg-mist);
  margin-bottom:.6rem;
}
.ap-header__title{
  font-family: var(--font-display);
  font-weight:800;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--sg-ink);
  margin-bottom:1.4rem;
}
.ap-header__facts{ display:flex; flex-wrap:wrap; gap:.8rem; }
.ap-pill{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  padding:.55em 1.1em;
  border-radius:999px;
  border:1px solid var(--sg-border);
  background:#fff;
  font-size:.85rem;
  font-weight:600;
  color: var(--sg-ink);
}
.ap-pill svg{ width:15px; height:15px; color: var(--sg-green-dark); flex:0 0 auto; }
.ap-pill img.icon-img{ width:15px; height:15px; object-fit:contain; flex:0 0 auto; }

/* Two-column layout */
.ap-layout{
  display:grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 3.5rem;
  align-items:start;
}
.ap-detail__text{
  font-size:1.02rem;
  line-height:1.85;
  color: var(--sg-ink);
}
.ap-detail__lead{
  font-size:1.2rem;
  line-height:1.7;
  color: var(--sg-ink);
}
.ap-detail__lead::first-letter{
  font-family: var(--font-display);
  font-weight:800;
  font-size:3.2em;
  float:left;
  line-height:.8;
  padding: .05em .08em 0 0;
  color: var(--sg-green-dark);
}
.ap-detail__list{
  list-style:none;
  margin: 1.6rem 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:.9rem;
}
.ap-detail__list li{
  position:relative;
  padding-left:1.8rem;
  line-height:1.6;
}
.ap-detail__list li::before{
  content:'';
  position:absolute;
  left:0; top:.5em;
  width:9px; height:9px;
  border-radius:50%;
  background: var(--sg-green);
}
.ap-detail__text p{ margin-bottom:1.3rem; }
.ap-detail__text p:last-child{ margin-bottom:0; }

/* Photo carousel */
.ap-carousel{ margin-top: 2.4rem; }
.ap-carousel__main{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 44px rgba(20,24,26,.12);
}
.ap-carousel__viewport{ position:relative; width:100%; height:100%; }
.ap-carousel__slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition: opacity .35s ease;
}
.ap-carousel__slide.is-active{ opacity:1; }
.ap-carousel__nav{
  position:absolute;
  top:50%; transform:translateY(-50%);
  width:42px; height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.9);
  border:none;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  color: var(--sg-ink);
  z-index:2;
  transition: background .2s ease;
}
.ap-carousel__nav:hover{ background:#fff; }
.ap-carousel__nav svg{ width:20px; height:20px; }
.ap-carousel__nav--prev{ left:1rem; }
.ap-carousel__nav--next{ right:1rem; }
.ap-carousel__thumbs{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:.8rem;
  margin-top:.8rem;
}
.ap-carousel__thumb{
  position:relative;
  aspect-ratio: 1/1;
  border-radius:12px;
  background-size:cover;
  background-position:center;
  border:2px solid transparent;
  cursor:pointer;
  padding:0;
  overflow:hidden;
}
.ap-carousel__thumb.is-active{ border-color: var(--sg-green); }
.ap-carousel__more{
  position:absolute; inset:0;
  background:rgba(10,14,12,.6);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  font-size:.72rem;
  font-weight:700;
  padding:.4rem;
}

/* Kas ir iekļauts? */
.ap-inclusions{ margin-top: 2.8rem; }
.ap-inclusions__heading{
  font-family: var(--font-display);
  font-size:1.3rem;
  margin-bottom:1.4rem;
}
.ap-inclusions__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem 1rem;
}
.ap-inclusions__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:.6rem;
  font-size:.85rem;
  font-weight:600;
  color: var(--sg-ink);
}
.ap-inclusions__icon{
  width:48px; height:48px;
  border-radius:50%;
  background: var(--sg-green-tint);
  color: var(--sg-green-dark);
  display:flex; align-items:center; justify-content:center;
}
.ap-inclusions__icon svg{ width:22px; height:22px; }
.ap-inclusions__icon img.icon-img{ width:26px; height:26px; object-fit:contain; }

/* Sidebar booking card */
.ap-layout__sidebar{ position:sticky; top: 7rem; }
.ap-side-card{
  background:#fff;
  border-radius:18px;
  padding: 1.8rem 1.6rem;
  border:1px solid var(--sg-border);
  box-shadow: 0 20px 44px rgba(20,24,26,.08);
}
.ap-side-card__head{
  display:flex;
  align-items:center;
  gap:.9rem;
  padding-bottom:1.3rem;
  border-bottom:1px solid var(--sg-border);
  margin-bottom:1.3rem;
}
.ap-side-card__icon{
  width:44px; height:44px;
  flex:0 0 auto;
  border-radius:50%;
  background: var(--sg-green-tint);
  color: var(--sg-green-dark);
  display:flex; align-items:center; justify-content:center;
}
.ap-side-card__icon svg{ width:20px; height:20px; }
.ap-side-card__icon img.icon-img{ width:24px; height:24px; object-fit:contain; border-radius:50%; }
.ap-side-card__title{
  font-family: var(--font-display);
  font-weight:700;
  font-size:.92rem;
  margin-bottom:.25rem;
}
.ap-side-card__rating{ color:#E8A93B; font-size:.85rem; }
.ap-side-card__rating span{ color: var(--sg-mist); font-weight:600; margin-left:.3em; }

.ap-side-card__price{ margin-bottom:1.4rem; }
.ap-side-card__price-label{ font-size:.8rem; color: var(--sg-mist); display:block; }
.ap-side-card__price-value{
  font-family: var(--font-display);
  font-weight:800;
  font-size:1.9rem;
  color: var(--sg-ink);
  display:block;
}
.ap-side-card__price-note{ font-size:.78rem; color: var(--sg-mist); }

.ap-side-card__checklist{
  list-style:none;
  margin:0 0 1.4rem;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:.6rem;
}
.ap-side-card__checklist li{
  display:flex;
  align-items:center;
  gap:.6em;
  font-size:.85rem;
  color: var(--sg-ink);
}
.ap-side-card__checklist svg{ width:16px; height:16px; color: var(--sg-green-dark); flex:0 0 auto; }

.ap-side-card__table-heading{
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
  color: var(--sg-mist);
  margin-bottom:.5rem;
}
.ap-side-card__table{ width:100%; border-collapse:collapse; font-size:.86rem; margin-bottom:1.4rem; }
.ap-side-card__table tr{ border-bottom:1px dashed var(--sg-border); }
.ap-side-card__table tr:last-child{ border-bottom:none; }
.ap-side-card__table td{ padding:.4rem 0; color: var(--sg-ink); }
.ap-side-card__table td:last-child{ text-align:right; font-weight:700; }

.ap-side-card__cta{ width:100%; justify-content:center; margin-bottom:1.4rem; }

.ap-side-card__trust{
  display:flex;
  flex-direction:column;
  gap:.7rem;
  padding: 1.2rem 0;
  border-top:1px solid var(--sg-border);
  border-bottom:1px solid var(--sg-border);
  margin-bottom:1.2rem;
}
.ap-side-card__trust div{ display:flex; align-items:center; gap:.6em; font-size:.78rem; color: var(--sg-mist); }
.ap-side-card__trust svg{ width:16px; height:16px; color: var(--sg-green-dark); flex:0 0 auto; }

.ap-side-card__contact{ font-size:.85rem; color: var(--sg-ink); }
.ap-side-card__contact span{ display:block; font-weight:700; margin-bottom:.2rem; }
.ap-side-card__contact a{ color: var(--sg-green-dark); font-weight:700; }

@media (max-width: 900px){
  .ap-layout{ grid-template-columns:1fr; gap:2.2rem; }
  .ap-layout__sidebar{ position:static; }
  .ap-inclusions__grid{ grid-template-columns: repeat(2, 1fr); }
  .ap-carousel__thumbs{ grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px){
  .ap-inclusions__grid{ grid-template-columns: 1fr 1fr; }
  .ap-carousel__thumbs{ grid-template-columns: repeat(3, 1fr); }
}
.sg-about__rows{
  display:flex;
  flex-direction:column;
  gap: 4.5rem;
  max-width: 1360px;
  margin:0 auto;
}
.sg-about__row{
  position:relative;
  display:flex;
  align-items:center;
}
.sg-about__row--reverse{ flex-direction: row-reverse; }

.sg-about__photo{
  flex: 1 1 72%;
  min-width:0;
  aspect-ratio: 16/9;
  background-size:cover;
  background-position:center;
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(20,24,26,.14);
}
.sg-about__panel{
  position:relative;
  z-index:2;
  flex: 0 0 auto;
  width: min(400px, 34vw);
  margin-left: -90px;
  background: var(--sg-ink);
  color:#fff;
  padding: 3.2rem 2.6rem;
  border-radius:16px;
  box-shadow: 0 28px 60px rgba(0,0,0,.3);
}
.sg-about__row--reverse .sg-about__panel{ margin-left:0; margin-right:-90px; }
.sg-about__panel h3{
  font-family: var(--font-display);
  font-size:1.55rem;
  text-transform:uppercase;
  line-height:1.3;
  margin-bottom:1.3rem;
}
.sg-about__panel-rule{ width:64px; height:3px; background:#6FC3E8; margin-bottom:1.7rem; }
.sg-about__panel p{
  color:#C7CFCD;
  line-height:1.8;
  margin-bottom:2.2rem;
  font-size:1.05rem;
}

/* ==========================================================================
   Icon rows (services / kur braucam / why choose)
   ========================================================================== */
.sg-icon-grid{
  display:flex;
  justify-content:center;
  flex-wrap:nowrap;
  gap: 2.2rem;
}
.sg-icon-card{ text-align:center; flex:0 1 220px; }
.sg-icon-card__icon{
  width:64px; height:64px;
  margin:0 auto 1.1rem;
  border-radius:50%;
  border:2px solid var(--sg-green);
  color: var(--sg-green-dark);
  display:flex; align-items:center; justify-content:center;
}
.sg-icon-card__icon svg{ width:26px; height:26px; }

/* Aktivitātes cards specifically get a bigger rectangular thumbnail
   instead of a small circled icon, so an uploaded image actually reads
   like a proper photo rather than being squeezed into a tiny circle. */
.sg-icon-card--link .sg-icon-card__icon{
  width:100%;
  height:auto;
  aspect-ratio: 4/3;
  margin: 0 0 1.2rem;
  border-radius:12px;
  border:none;
  background: var(--sg-green-tint);
  overflow:hidden;
}
.sg-icon-card--link .sg-icon-card__icon svg{ width:34%; height:34%; }
.sg-icon-card--link .sg-icon-card__icon img.icon-img{
  width:100%; height:100%;
  object-fit:cover;
}
.sg-icon-card--no-icon{ padding-top:.4rem; }
.sg-icon-card--no-icon h3{
  position:relative;
  padding-top:1.3rem;
}
.sg-icon-card--no-icon h3::before{
  content:'';
  position:absolute;
  top:0; left:50%;
  transform:translateX(-50%);
  width:32px; height:3px;
  background: var(--sg-green);
  border-radius:2px;
}
.sg-icon-card--link{
  display:block;
  color:inherit;
  background:#fff;
  border-radius:16px;
  padding:1.8rem 1.6rem 1.6rem;
  box-shadow: 0 12px 30px rgba(20,24,26,.07);
  border:1px solid var(--sg-border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sg-icon-card--link:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20,24,26,.12);
}
.sg-icon-card--photo{ padding-top:0; overflow:hidden; }
.sg-icon-card--photo.sg-icon-card--no-icon h3{ padding-top:0; }
.sg-icon-card--photo.sg-icon-card--no-icon h3::before{ display:none; }
.sg-icon-card__photo{
  aspect-ratio: 4/3;
  margin: 0 -1.6rem 1.4rem;
  width: calc(100% + 3.2rem);
  background-size:cover;
  background-position:center;
}
.sg-icon-card__more{
  display:inline-block;
  margin-top:1rem;
  font-family: var(--font-mono);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: var(--sg-green-dark);
}
.sg-icon-card__icon img.icon-img{ width:42px; height:42px; object-fit:contain; }
.sg-icon-card h3{
  font-family: var(--font-display);
  font-size:.86rem;
  letter-spacing:.03em;
  text-transform:uppercase;
  margin-bottom:.6rem;
}
.sg-icon-card p{
  font-size:.86rem;
  color: var(--sg-mist);
  line-height:1.6;
}

/* ==========================================================================
   Kur braucam — photo+caption pairs kept together in the DOM (so mobile
   stacking pairs each photo with its own caption), reassembled into a
   two-row grid (photos row, captions row) on wider screens
   ========================================================================== */
.sg-routes{ max-width:1180px; margin:0 auto; }
.sg-routes__grid{
  display:grid;
  grid-template-columns: repeat(var(--sg-routes-cols, 3), 1fr);
  gap: 1.2rem 1rem;
}
.sg-routes__photo{
  grid-row: 1;
  aspect-ratio: 5/4;
  background-size:cover;
  background-position:center;
  border-radius:14px;
  box-shadow: 0 16px 34px rgba(20,24,26,.14);
  transition: transform .35s ease;
}
.sg-routes__photo:hover{ transform: scale(1.03); }
.sg-routes__caption{
  grid-row: 2;
  text-align:left;
}
.sg-routes__caption h3{
  font-family: var(--font-display);
  font-size:1.15rem;
  text-transform:uppercase;
  color: var(--sg-green-dark);
  margin-bottom:.6rem;
}
.sg-routes__caption p{
  color: var(--sg-mist);
  font-size:.94rem;
  line-height:1.65;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.sg-gallery{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  max-width:900px;
  margin:0 auto;
  aspect-ratio: 16/7;
  background-size:cover;
  background-position:center;
}
.sg-gallery__caption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 1.4rem 1.8rem;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
  color:#fff;
  font-family: var(--font-mono);
  font-size:.8rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.sg-gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width:1180px;
  margin:0 auto;
}
.sg-gallery-grid__item{
  display:block;
  aspect-ratio: 1/1;
  background-size:cover;
  background-position:center;
  border-radius:12px;
  box-shadow: 0 10px 26px rgba(20,24,26,.1);
  transition: transform .3s ease;
}
.sg-gallery-grid__item:hover{ transform: scale(1.035); }

/* ==========================================================================
   Pricing page (/cenas)
   ========================================================================== */
.sg-price-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.sg-price-card{
  background:#fff;
  border-radius:18px;
  padding: 2.2rem 1.8rem 1.8rem;
  text-align:center;
  box-shadow: 0 16px 40px rgba(20,24,26,.08);
  border: 1px solid var(--sg-border);
}
.sg-price-card__art{
  width:100%;
  aspect-ratio: 4/3;
  border-radius:14px;
  background: linear-gradient(160deg, #EDEFEE 0%, #F7F8F7 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 1.6rem;
  padding: 1.2rem;
}
.sg-price-card__art svg{ width:70%; height:70%; color: var(--sg-ink); }
.sg-price-card__price{
  font-family: var(--font-display);
  font-weight:800;
  font-size:1.25rem;
  color: var(--sg-green-dark);
  margin-bottom:.9rem;
}
.sg-price-card__desc{
  color: var(--sg-mist);
  font-size:.92rem;
  line-height:1.6;
  margin-bottom:1.1rem;
  min-height:4.8em;
}
.sg-price-card__note{
  font-weight:700;
  font-size:.86rem;
  padding-bottom:1rem;
  margin-bottom:1.4rem;
  border-bottom: 2px solid var(--sg-green);
  display:inline-block;
}
.sg-price-table{
  width:100%;
  border-collapse:collapse;
  font-size:.88rem;
}
.sg-price-table caption{
  font-family: var(--font-mono);
  font-size:.68rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--sg-mist);
  text-align:left;
  padding-bottom:.6rem;
  border-bottom:1px solid var(--sg-border);
  margin-bottom:.4rem;
}
.sg-price-table tr{ border-bottom:1px solid var(--sg-border); }
.sg-price-table tr:last-child{ border-bottom:none; }
.sg-price-table td{ padding:.55rem .2rem; text-align:left; color: var(--sg-ink); }
.sg-price-table td:last-child{ text-align:right; font-weight:700; }

.sg-price-footnote{
  text-align:center;
  font-size:.82rem;
  color: var(--sg-mist);
  font-style:italic;
}

/* ==========================================================================
   Kontakti page
   ========================================================================== */
.kt-page{ min-height:70vh; }
.kt-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.6rem;
  margin-bottom: 4rem;
}
.kt-heading h1{
  font-family: var(--font-display);
  font-weight:800;
  text-transform:uppercase;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  white-space:nowrap;
}
.kt-heading__rule{
  flex:1 1 auto;
  height:2px;
  background: var(--sg-green);
  max-width:220px;
}
.kt-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width:900px;
  margin:0 auto;
}
.kt-col{ text-align:center; }
.kt-block{ margin-bottom:2.4rem; }
.kt-block:last-child{ margin-bottom:0; }
.kt-block h3{
  font-family: var(--font-display);
  font-size:.95rem;
  text-transform:uppercase;
  margin-bottom:.7rem;
}
.kt-block__accent{ color: var(--sg-green-dark); }
.kt-block p{
  color: var(--sg-mist);
  line-height:1.7;
  font-size:.95rem;
}
.kt-block a{ color: var(--sg-mist); }
.kt-block a:hover{ color: var(--sg-green-dark); }

.kt-socials{
  display:flex;
  justify-content:center;
  gap:.9rem;
  margin-bottom:2.4rem;
}
.kt-social-icon{
  width:44px; height:44px;
  border-radius:50%;
  border:1.5px solid var(--sg-green);
  color: var(--sg-green-dark);
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, color .2s ease;
}
.kt-social-icon svg{ width:20px; height:20px; }
.kt-social-icon:hover{ background: var(--sg-green); color:#fff; }

@media (max-width:700px){
  .kt-grid{ grid-template-columns:1fr; gap:2.6rem; }
  .kt-heading{ gap:1rem; }
  .kt-heading__rule{ max-width:60px; }
}

/* ==========================================================================
   BUJ — FAQ accordion (native details/summary, no JS needed)
   ========================================================================== */
.bj-list{
  max-width:800px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:.8rem;
}
.bj-item{
  border:1px solid var(--sg-border);
  border-radius:12px;
  padding: 0 1.4rem;
  background:#fff;
  transition: background .2s ease;
}
.bj-item[open]{ background: var(--sg-green-tint); }
.bj-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding: 1.2rem 0;
  font-weight:700;
  font-size:.98rem;
}
.bj-item summary::-webkit-details-marker{ display:none; }
.bj-item__chevron{
  flex:0 0 auto;
  width:22px; height:22px;
  display:flex; align-items:center; justify-content:center;
  color: var(--sg-green-dark);
  transition: transform .25s ease;
}
.bj-item__chevron svg{ width:16px; height:16px; }
.bj-item[open] .bj-item__chevron{ transform: rotate(180deg); }
.bj-item p{
  color: var(--sg-mist);
  line-height:1.7;
  font-size:.94rem;
  padding-bottom:1.4rem;
  margin:0;
}

/* ==========================================================================
   Jautājumi CTA band
   ========================================================================== */
.sg-cta{
  background: var(--sg-ink);
  color:#fff;
  text-align:center;
  padding: 4.5rem 5vw;
}
.sg-cta h2{
  font-family: var(--font-display);
  font-weight:800;
  text-transform:uppercase;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom:.9rem;
}
.sg-cta p{
  color:#B9C2C0;
  max-width:48ch;
  margin: 0 auto 1.8rem;
  line-height:1.6;
}
.sg-cta .sg-btn{ margin:0 auto; }

/* ==========================================================================
   Footer
   ========================================================================== */
.sg-footer{
  background:#0D1012;
  color:#B9C2C0;
  padding: 3.6rem 5vw 2rem;
}
.sg-footer__grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap:2rem;
  padding-bottom:2.4rem;
}
.sg-footer__brand img{ height:30px; filter:brightness(0) invert(1); margin-bottom:1rem; }
.sg-footer__brand p{ font-size:.85rem; line-height:1.6; max-width:26ch; }
.sg-footer h4{
  font-family: var(--font-mono);
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:1rem;
}
.sg-footer ul li{ margin-bottom:.6rem; font-size:.85rem; }
.sg-footer ul li a:hover{ color:#fff; }
.sg-footer__social{ display:flex; gap:.6rem; margin-top:1rem; }
.sg-footer__social a{
  width:34px; height:34px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem;
}
.sg-footer__bottom{
  max-width:1180px; margin:0 auto;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:.6rem;
  padding-top:1.6rem;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:.78rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px){
  .sg-hero{ min-height:100vh; }
  .sg-nav__links{ display:none; }
  .sg-nav__burger{ display:block; }
  .sg-footer__grid{ grid-template-columns: 1fr 1fr; }
  .sg-icon-grid{
    flex-wrap:wrap;
    justify-content:center;
    gap: 1.8rem 1rem;
  }
  .sg-icon-card{ flex: 1 1 calc(50% - 0.5rem); max-width:180px; }
  .sg-gallery-grid{ grid-template-columns: repeat(2, 1fr); gap:.7rem; }
  .sg-routes__grid{
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sg-routes__photo{
    grid-column: 1 !important;
    grid-row: auto !important;
    aspect-ratio:16/9;
    border-radius:14px;
    margin-bottom:.9rem;
  }
  .sg-routes__caption{
    grid-column: 1 !important;
    grid-row: auto !important;
    margin-bottom:2rem;
  }
  .sg-routes__caption:last-child{ margin-bottom:0; }
  .sg-about__row, .sg-about__row--reverse{
    flex-direction:column;
    align-items:stretch;
  }
  .sg-about__photo{
    flex: none;
    width:100%;
    aspect-ratio: 16/10;
    border-radius: 16px;
  }
  .sg-about__panel, .sg-about__row--reverse .sg-about__panel{
    width: calc(100% - 2.4rem);
    max-width:none;
    margin: -2.2rem auto 0;
    padding: 2.2rem 1.8rem;
  }
}
@media (max-width: 620px){
  .sg-price-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .sg-footer__grid{ grid-template-columns: 1fr; }
}
