:root {
  --color-bg: #f7f8fb;
  --color-surface: #ffffff;
  --color-text: #171a21;
  --color-muted: #667085;
  --color-line: #e5e7eb;
  --color-primary: #0f766e;
  --color-primary-dark: #115e59;
  --color-accent: #f59e0b;
  --color-brand-blue: #258bb8;
  --color-brand-blue-dark: #214b64;
  --color-brand-blue-deep: #16374c;
  --shadow-soft: 0 18px 45px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

.activity-cards {
  padding: 72px 16px;
  background: #f7f8fb;
}

.activity-cards__container {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.activity-cards__header {
  margin-bottom: 34px;
  text-align: center;
}

.activity-cards__eyebrow {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activity-cards__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.activity-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.activity-card {
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
  min-height: 100%;
  outline: none;
}

.activity-card:hover,
.activity-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
}

.activity-card img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.activity-card__body {
  padding: 22px;
}

.activity-card__body h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 800;
}

.activity-card__body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.activity-card__button {
  margin-top: 16px;
  padding: 0;
  border: 0;
  color: var(--color-primary);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.activity-card {
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: all .35s ease;
    cursor: pointer;
}

.activity-card.is-expanded {
    grid-column: span 2;
    transform: scale(1.05);
    z-index: 20;
    box-shadow: 0 25px 70px rgba(0,0,0,.18);
}

.modal-backdrop.show {
    opacity: .72;
}

.modal-xl {
    --bs-modal-width: min(1120px, calc(100vw - 48px));
}

.modal-content{
    overflow:hidden;
    border:0;
    border-radius:8px;
    background:#fff;
    box-shadow:0 30px 90px rgba(17,24,39,.28);
}

.modal-header{
    min-height:76px;
    padding:22px 28px;
    border-bottom:1px solid rgba(229,231,235,.8);
    background:#fff;
}

.modal-title{
    color:#111827;
    font-size:clamp(1.65rem, 3vw, 2.35rem);
    font-weight:800;
    letter-spacing:0;
}

.modal-header .btn-close{
    width:42px;
    height:42px;
    margin:0;
    border-radius:50%;
    background-color:#f3f4f6;
    opacity:.78;
    transition:opacity 180ms ease, background-color 180ms ease;
}

.modal-header .btn-close:hover{
    background-color:#e5e7eb;
    opacity:1;
}

.modal-body{
    padding:0;
    background:#fff;
}

.modal-body img{
    width:100%;
    height:clamp(320px, 46vw, 540px);
    display:block;
    margin:0 !important;
    border-radius:0 !important;
    object-fit:cover;
    object-position:center;
    background:#f3f4f6;
}

.modal-body p{
    width:min(860px, calc(100% - 56px));
    margin:0 auto;
    color:#4b5563;
    font-size:1rem;
    line-height:1.85;
}

.modal-body p:first-of-type{
    padding-top:30px;
}

.modal-body p + p{
    margin-top:12px;
}

.modal-body p:last-child{
    padding-bottom:36px;
}

.activity-card.is-expanded img{
    height:300px;
}

.activity-card.is-expanded .activity-card__body{
    padding:28px;
}

.activity-card.is-expanded h3{
    font-size:1.8rem;
}

.activity-card.is-expanded p{
    font-size:1.05rem;
    line-height:1.8;
}

.location-section {
  padding: 18px 16px 80px;
  background: #f7f8fb;
}

.location-section__container {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: 28px;
  align-items: stretch;
}

.location-section__content,
.location-section__map {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.location-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
}

.location-section__eyebrow {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-section h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0;
}

.location-section address {
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 1.06rem;
  font-style: normal;
  line-height: 1.75;
}

.location-section__link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.location-section__link:hover {
  color: #ffffff;
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.location-section__map {
  min-height: 380px;
}

.location-section__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  border: 0;
}

.about-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: 74px max(16px, calc((100vw - 1180px) / 2)) 86px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(22, 55, 76, 0.98), rgba(33, 75, 100, 0.94)),
    var(--color-brand-blue-dark);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(247, 248, 251, 1), rgba(247, 248, 251, 0));
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.about-hero__eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.about-hero__content > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.7;
}

.about-hero__visual {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-hero__visual img {
  width: 100%;
  height: 188px;
  display: block;
  padding: 24px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.about-hero__visual img:nth-child(2),
.about-hero__visual img:nth-child(3) {
  transform: translateY(26px);
}

.about-story {
  padding: 88px 16px 36px;
  background: #f7f8fb;
}

.about-story__container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: start;
}

.about-story__intro {
  position: sticky;
  top: 118px;
}

.about-story__eyebrow,
.about-gallery__header p {
  margin: 0 0 10px;
  color: var(--color-brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story__intro h2,
.about-gallery__header h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: 0;
}

.about-story__text {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.about-story__text p {
  margin: 0;
  color: #4b5563;
  font-size: 1.04rem;
  line-height: 1.9;
}

.about-story__text p + p {
  margin-top: 18px;
}

.about-highlights {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-highlights__item {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--color-brand-blue-dark);
  box-shadow: var(--shadow-soft);
}

.about-highlights__item strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
}

.about-highlights__item span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.about-gallery {
  padding: 78px 16px 96px;
  background: #ffffff;
}

.about-gallery__header,
.about-gallery__stage,
.about-gallery__thumbs {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.about-gallery__header {
  margin-bottom: 30px;
}

.about-gallery__stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #111827;
  box-shadow: var(--shadow-soft);
}

.about-gallery__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 320ms ease, transform 320ms ease;
}

.about-gallery__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(22, 55, 76, 0.72);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.about-gallery__arrow:hover {
  background: var(--color-brand-blue);
}

.about-gallery__arrow--prev {
  left: 18px;
}

.about-gallery__arrow--next {
  right: 18px;
}

.about-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.about-gallery__thumb {
  height: 118px;
  overflow: hidden;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 8px;
  background: #f3f4f6;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.about-gallery__thumb:hover,
.about-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--color-brand-blue);
  transform: translateY(-2px);
}

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

.contact-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: 72px max(16px, calc((100vw - 1180px) / 2));
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(22, 55, 76, 0.98), rgba(33, 75, 100, 0.92)),
    var(--color-brand-blue-dark);
}

.contact-hero__content {
  max-width: 760px;
}

.contact-hero__eyebrow,
.contact-card__eyebrow {
  margin: 0 0 12px;
  color: var(--color-brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-hero__content > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.7;
}

.contact-section {
  padding: 84px 16px 96px;
  background: #f7f8fb;
}

.contact-section__container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 22px;
}

.contact-card,
.contact-panel {
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-card {
  padding: clamp(26px, 4vw, 38px);
}

.contact-card--primary {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(33, 75, 100, 0.98), rgba(22, 55, 76, 0.98)),
    var(--color-brand-blue-dark);
}

.contact-card h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: 0;
}

.contact-card--primary h2 {
  color: #ffffff;
}

.contact-card address {
  margin: 22px 0 0;
  color: inherit;
  font-size: 1.02rem;
  font-style: normal;
  line-height: 1.8;
  opacity: 0.82;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  display: grid;
  gap: 3px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.working-hours {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.working-hours div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.working-hours div:last-child {
  border-bottom: 0;
}

.working-hours dt,
.working-hours dd {
  margin: 0;
  color: #4b5563;
  font-size: 0.98rem;
}

.working-hours dt {
  font-weight: 800;
}

.working-hours dd {
  font-weight: 700;
}

.working-hours .is-closed dd {
  color: #b91c1c;
  text-transform: uppercase;
}

.contact-panel {
  overflow: hidden;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 38px);
}

.contact-form div {
  display: grid;
  gap: 8px;
}

.contact-form label {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 13px 14px;
  color: #111827;
  background: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-brand-blue);
  box-shadow: 0 0 0 4px rgba(37, 139, 184, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--color-brand-blue-dark);
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-form button:hover {
  background: var(--color-brand-blue-deep);
  transform: translateY(-2px);
}

.contact-map {
  height: 330px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 1100px) {
  .activity-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .activity-card.is-expanded {
    grid-column: span 2;
  }

  .location-section__container {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-story__container {
    grid-template-columns: 1fr;
  }

  .about-hero__visual {
    justify-self: stretch;
    width: 100%;
  }

  .about-story__intro {
    position: static;
  }

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .activity-cards__grid {
    grid-template-columns: 1fr;
  }

  .activity-card.is-expanded {
    grid-column: span 1;
  }

  .location-section {
    padding-bottom: 56px;
  }

  .location-section__map,
  .location-section__map iframe {
    min-height: 320px;
  }

  .about-hero {
    min-height: 0;
    padding-top: 54px;
  }

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

  .about-hero__visual img {
    height: 168px;
    padding: 18px;
  }

  .about-hero__visual img:nth-child(2),
  .about-hero__visual img:nth-child(3) {
    transform: none;
  }

  .about-story {
    padding-top: 58px;
  }

  .about-highlights,
  .about-gallery__thumbs {
    grid-template-columns: 1fr;
  }

  .about-gallery__stage {
    min-height: 360px;
  }

  .about-gallery__thumb {
    height: 96px;
  }

  .contact-hero {
    min-height: 340px;
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .contact-section {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .working-hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-map {
    height: 300px;
  }
} 

.brands{
    padding:40px 0;
    background:#fff;
}

.brands__slider{
    overflow:hidden;
    width:100%;
    position:relative;
}

.brands__track{
    display:flex;
    align-items:center;
    gap:70px;
    width:max-content;
    animation: marquee 30s linear infinite;
}

.brands__track img{
    width:180px;
    height:80px;
    object-fit:contain;
    flex-shrink:0;
}

@keyframes marquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

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

a:hover {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(33, 75, 100, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.16);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: max(500px, calc((100vw - 1540px) / 2 + 500px));
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 58%,
    rgba(255, 255, 255, 0.74) 68%,
    rgba(255, 255, 255, 0.18) 84%,
    rgba(33, 75, 100, 0) 100%
  );
  pointer-events: none;
}

.navbar {
  position: relative;
  z-index: 1;
  width: min(1540px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.navbar__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  min-width: 288px;
  padding: 0 56px 0 24px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}

.navbar__brand::after {
  display: none;
}

.navbar__logo {
  display: block;
  width: 172px;
  height: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 28px;
}

.navbar__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.navbar__meta-item {
  min-width: 136px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.navbar__meta-item:hover {
  color: #ffffff;
}

.navbar__meta-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.navbar__meta-item span {
  display: grid;
  gap: 1px;
  font-size: 0.78rem;
  line-height: 1.18;
  white-space: nowrap;
}

.navbar__meta-item strong {
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.navbar__link {
  border: 0;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  transition: color 180ms ease, background 180ms ease;
}

.navbar__link:hover,
.navbar__link.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.navbar__link--button {
  margin-left: 6px;
  color: var(--color-brand-blue-dark);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.navbar__link--button:hover {
  color: var(--color-brand-blue-deep);
  background: rgba(255, 255, 255, 0.9);
}

.navbar__dropdown {
  position: relative;
}

.navbar__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.navbar__dropdown-toggle {
  gap: 8px;
  cursor: pointer;
}

.navbar__dropdown-icon {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.navbar__dropdown-menu {
  position: absolute;
  z-index: 5;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown:focus-within .navbar__dropdown-menu,
.navbar__dropdown.is-open .navbar__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.navbar__dropdown:hover .navbar__dropdown-icon,
.navbar__dropdown:focus-within .navbar__dropdown-icon,
.navbar__dropdown.is-open .navbar__dropdown-icon {
  transform: translateY(2px) rotate(225deg);
}

.navbar__dropdown-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--color-muted);
  font-size: 0.93rem;
  font-weight: 600;
}

.navbar__dropdown-link:hover {
  color: var(--color-primary-dark);
  background: rgba(15, 118, 110, 0.08);
}

.navbar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.sector-showcase {
  width: min(1400px, calc(100% - 24px));
  margin: 18px auto 0;
}

.sector-slider {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 8px;
  background: #111827;
  box-shadow: var(--shadow-soft);
}

.sector-slider__viewport {
  position: relative;
  width: 100%;
  min-height: 640px;
}

.sector-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.sector-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.sector-slide__image,
.sector-slide__placeholder {
  width: 100%;
  height: 640px;
  display: block;
  object-fit: cover;
}

.sector-slide__placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(37, 133, 173, 0.96), rgba(69, 72, 75, 0.96)),
    #45484b;
}

.sector-slide__placeholder span {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
}

.sector-slide__placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.sector-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 54%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.sector-slide__overlay {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  bottom: clamp(28px, 5vw, 64px);
  z-index: 1;
  width: min(680px, calc(100% - 48px));
  color: #ffffff;
}

.sector-slide__eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sector-slide__title {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.sector-slide__text {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  line-height: 1.7;
}

.sector-slide__button {
  min-height: 48px;
  margin-top: 26px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: var(--color-brand-blue-deep);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.sector-slide__button:hover,
.sector-slide__button:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}

.sector-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.42);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.sector-slider__arrow:hover {
  background: rgba(15, 118, 110, 0.72);
}

.sector-slider__arrow span {
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.sector-slider__arrow--prev {
  left: 18px;
}

.sector-slider__arrow--next {
  right: 18px;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 80px 16px;
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.12)),
    var(--color-bg);
}

.hero__content {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero__text {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 22px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.hero__button:hover {
  background: var(--color-primary-dark);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--color-brand-blue-dark);
}

.site-footer__main {
  width: min(1180px, calc(100% - 32px));
  min-height: 250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 65px 0 34px;
}

.site-footer__logo {
  width: min(232px, 78vw);
  height: auto;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.18));
}

.site-footer__main p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

.site-footer__bottom {
  position: relative;
  min-height: 52px;
  background: var(--color-brand-blue-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(34vw, 330px);
  height: 100%;
  background: var(--color-brand-blue-dark);
  clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(16px, calc((100vw - 1180px) / 2));
}

.site-footer__bottom p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.site-footer__bottom strong {
  color: #ffffff;
  font-weight: 800;
}

.floating-instagram {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 40;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 32%, transparent 46%),
    linear-gradient(135deg, #833ab4, #fd1d1d 48%, #fcb045);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.24);
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-instagram:hover,
.floating-instagram:focus-visible {
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.32);
}

.floating-instagram svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 820px) {
  .site-header::before {
    width: 245px;
  }

  .navbar {
    min-height: 70px;
    flex-wrap: wrap;
  }

  .navbar__logo {
    width: 132px;
  }

  .navbar__brand {
    align-self: auto;
    min-width: 188px;
    min-height: 58px;
    padding: 0 30px 0 14px;
    border-radius: 0 0 14px 0;
  }

  .navbar__brand::after {
    right: -24px;
    width: 48px;
  }

  .navbar__toggle {
    display: inline-block;
  }

  .navbar__toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navbar__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .navbar__menu {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: var(--color-brand-blue-dark);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .navbar__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar__link,
  .navbar__link--button {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .navbar__dropdown {
    width: 100%;
  }

  .navbar__dropdown-toggle {
    justify-content: space-between;
  }

  .navbar__dropdown-menu {
    position: static;
    min-width: 0;
    display: none;
    margin: 4px 0 6px;
    padding: 6px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(22, 55, 76, 0.94);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .navbar__dropdown.is-open .navbar__dropdown-menu {
    display: grid;
  }

  .navbar__meta {
    width: 100%;
    order: 3;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
    padding: 0 0 10px;
    border-left: 0;
  }

  .navbar__meta-item {
    min-width: 0;
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .navbar__meta-item span {
    font-size: 0.72rem;
    white-space: normal;
  }

  .navbar__meta-item strong {
    font-size: 0.65rem;
  }

  .navbar__dropdown-link {
    color: rgba(255, 255, 255, 0.82);
  }

  .navbar__dropdown-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
  }

  .sector-showcase {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .sector-sidebar {
    padding: 12px;
  }

  .sector-sidebar__list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
  }

  .sector-tab {
    min-width: 178px;
    min-height: 70px;
    scroll-snap-align: start;
  }

  .sector-tab.is-active {
    transform: none;
  }

  .sector-panel,
  .sector-panel__image,
  .sector-panel__placeholder {
    min-height: 430px;
  }

  .hero {
    min-height: calc(100vh - 70px);
    padding: 64px 16px;
  }

  .navbar__meta {
    display: none;
  }

  .site-footer__main {
    min-height: 0;
    gap: 8px;
    padding: 34px 0 30px;
  }

  .site-footer__bottom {
    min-height: 76px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .site-footer__bottom::before {
    width: 55vw;
  }

  .floating-instagram {
    right: 14px;
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    transform: none;
  }

  .floating-instagram:hover,
  .floating-instagram:focus-visible {
    transform: scale(1.06);
  }
}
