:root {
  --bg: #f7fafa;
  --paper: #ffffff;
  --tint: #ecf5f5;
  --ink: #1d2142;
  --ink-mid: #3e4368;
  --ink-mute: #6d7390;
  --rule: #d9e4e4;
  --rule-soft: #e7efef;
  --teal: #2ba3a0;
  --teal-soft: #7ac2c0;
  --navy: #313878;
  --navy-deep: #262b5e;
  --blue: #116dff;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Wix Madefor Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--navy); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(43,163,160,0.5); }
a:hover { color: var(--teal); text-decoration-color: var(--teal); }
img { max-width: 100%; }

h1, h2, h3 {
  font-family: 'Wix Madefor Display', 'Inter', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.16;
  color: var(--ink);
  margin: 0;
}
p { margin: 0 0 16px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 36px; }

.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  font-weight: 400;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.label::before { content: ""; width: 30px; height: 1px; background: var(--teal); }
.label.center { justify-content: center; }
.label.center::after { content: ""; width: 30px; height: 1px; background: var(--teal); }

/* Buttons: one fill, one ghost */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--navy);
  color: #fff;
  font-family: 'Wix Madefor Text', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink-mute); }
.btn-ghost:hover { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }
.btn[disabled]:hover { background: var(--navy); border-color: var(--navy); }

/* Header */
header.site { background: var(--paper); border-bottom: 1px solid var(--rule); position: relative; z-index: 60; }
.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 36px;
  gap: 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 38px; width: auto; display: block; }
nav.primary { display: flex; gap: 30px; align-items: center; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; }
.nav-link {
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 400;
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 1px solid transparent;
}
.nav-link:hover, .nav-link.active { border-bottom-color: var(--teal); color: var(--ink); }
.caret { display: inline-block; margin-left: 7px; width: 6px; height: 6px; border-right: 1px solid var(--ink-mute); border-bottom: 1px solid var(--ink-mute); transform: rotate(45deg) translateY(-2px); }
.nav-item { position: relative; }
.drop {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: -24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 22px 26px;
  min-width: 250px;
  box-shadow: 0 14px 34px rgba(29,33,66,0.08);
}
.drop::before { content: ""; position: absolute; top: -15px; left: 0; right: 0; height: 15px; }
.drop a {
  display: block;
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 400;
  padding: 7px 0;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.drop a:hover { color: var(--teal); }
.drop-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 400;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule-soft);
}
.drop-wide { display: none; gap: 40px; min-width: 460px; }
.nav-item.open .drop, .nav-item.open .drop-wide { display: block; }
.nav-item.open .drop-wide { display: flex; }
@media (hover: hover) and (min-width: 981px) {
  .nav-item:hover .drop { display: block; }
  .nav-item:hover .drop-wide { display: flex; }
}
.btn-nav { padding: 12px 24px; }
.menu-btn { display: none; }

/* Hero */
.hero { padding: 92px 0 88px; background: var(--bg); }
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
  align-items: center;
}
.hero h1 { font-size: clamp(33px, 4.4vw, 56px); margin-bottom: 28px; max-width: 16ch; }
.hero p.lead { font-size: 18.5px; color: var(--ink-mid); max-width: 50ch; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Photos */
.photo-fig { margin: 0; }
.photo-frame { overflow: hidden; background: var(--tint); }
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.photo-frame:hover img { transform: scale(1.035); }
.r43 { aspect-ratio: 4 / 3; }
.r45 { aspect-ratio: 4 / 5; }
.r32 { aspect-ratio: 3 / 2; }
.photo-fig figcaption {
  padding-top: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Claim line */
.claimline {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  text-align: center;
  padding: 26px 36px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

section { padding: 100px 0; }
.sec-head { max-width: var(--max); margin: 0 auto 56px; padding: 0 36px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.sec-head h2 { font-size: clamp(25px, 3vw, 38px); max-width: 24ch; }
.sec-head p { color: var(--ink-mute); max-width: 40ch; margin: 0; font-size: 15.5px; }

/* Solutions card grid */
.solutions { background: var(--paper); border-bottom: 1px solid var(--rule); }
.sol-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sol-card {
  padding: 34px 30px 38px;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  background: var(--paper);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease;
}
.sol-grid .sol-card:nth-child(3n) { border-right: none; }
.sol-grid .sol-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
.sol-card:hover { background: var(--bg); }
.sol-num { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; font-weight: 400; }
.sol-card h3 { font-size: 18px; margin-bottom: 6px; letter-spacing: 0.05em; }
.sol-aud { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px; }
.sol-card p { font-size: 15px; color: var(--ink-mid); margin-bottom: 20px; flex-grow: 1; }
.sol-card .more { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--teal); padding-bottom: 3px; align-self: flex-start; }
.sol-card:hover .more { color: var(--teal); }

/* Values */
.values { background: var(--bg); }
.val-grid { max-width: var(--max); margin: 0 auto; padding: 0 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.val-item { border-top: 1px solid var(--ink); padding-top: 26px; }
.val-item h3 { font-size: 17px; margin-bottom: 14px; }
.val-item p { font-size: 15px; color: var(--ink-mid); margin: 0; }

/* Split sections */
.split { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.split-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}
.split-grid h2 { font-size: clamp(25px, 3vw, 38px); margin-bottom: 24px; }
.split-grid p { font-size: 16.5px; color: var(--ink-mid); }
.split-cta { margin-top: 12px; }

/* Navy band: why choose us */
.why { background: var(--navy); color: #d8dcf2; }
.why .label { color: var(--teal-soft); }
.why .label::before { background: var(--teal-soft); }
.why h2 { color: #fff; font-size: clamp(25px, 3vw, 38px); margin-bottom: 56px; max-width: 26ch; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.why-item { border-top: 1px solid rgba(122,194,192,0.45); padding-top: 26px; }
.why-item .num { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-soft); margin-bottom: 14px; }
.why-item h3 { color: #fff; font-size: 17px; margin-bottom: 14px; }
.why-item p { font-size: 15px; color: #b8bedf; margin: 0; }

/* Testimonials slider */
.testimonials { background: var(--tint); border-bottom: 1px solid var(--rule); }
.tslider { max-width: 900px; margin: 0 auto; padding: 0 70px; position: relative; text-align: center; }
.tslide { display: none; }
.tslide.show { display: block; animation: tfade 0.55s ease; }
@keyframes tfade { from { opacity: 0; } to { opacity: 1; } }
.tslide blockquote {
  margin: 0 0 30px;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
}
.tslide cite { font-style: normal; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}
.t-arrow:hover { border-color: var(--teal); color: var(--teal); }
.t-prev { left: 0; }
.t-next { right: 0; }
.t-dots { margin-top: 34px; display: flex; justify-content: center; gap: 10px; }
.t-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rule); border: none; padding: 0; cursor: pointer; }
.t-dot.on { background: var(--teal); }

/* CTA band */
.cta { background: var(--bg); text-align: center; }
.cta h2 { font-size: clamp(27px, 3.4vw, 44px); margin-bottom: 20px; }
.cta p { color: var(--ink-mid); max-width: 52ch; margin: 0 auto 34px; font-size: 17px; }

/* Inner page header */
.page-head { padding: 78px 0 66px; border-bottom: 1px solid var(--rule); background: var(--paper); }
.page-head h1 { font-size: clamp(30px, 3.8vw, 50px); margin-bottom: 22px; max-width: 20ch; }
.page-head p.lead { font-size: 17.5px; color: var(--ink-mid); max-width: 60ch; margin: 0; }

/* Solutions detail rows */
.sol-group-bar {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--bg);
}
.sol-row {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 70px;
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
  max-width: var(--max);
  margin: 0 auto;
}
.sol-row-head .sol-num { margin-bottom: 14px; }
.sol-row-head h2 { font-size: clamp(20px, 2.2vw, 27px); margin-bottom: 12px; }
.sol-row-head .sol-aud { margin-bottom: 0; }
.sol-row-body p { font-size: 16.5px; color: var(--ink-mid); }
.incl { list-style: none; padding: 0; margin: 26px 0 30px; }
.incl li { border-top: 1px solid var(--rule-soft); padding: 11px 0; font-size: 15px; color: var(--ink-mid); }
.incl li::before { content: "+"; color: var(--teal); margin-right: 12px; }

/* Steps */
.steps { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.step-grid { max-width: var(--max); margin: 0 auto; padding: 0 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { padding: 36px 32px 40px; border-left: 1px solid var(--rule); }
.step:first-child { border-left: none; padding-left: 0; }
.step .num { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.step h3 { font-size: 17px; margin-bottom: 14px; }
.step p { font-size: 15px; color: var(--ink-mid); margin: 0; }

/* Resources */
.res-section { padding: 84px 0; border-bottom: 1px solid var(--rule); }
.res-grid { display: grid; grid-template-columns: 330px 1fr; gap: 70px; max-width: var(--max); margin: 0 auto; padding: 0 36px; }
.res-head h2 { font-size: clamp(20px, 2.2vw, 27px); margin: 14px 0 16px; }
.res-head p { font-size: 15.5px; color: var(--ink-mute); }
.res-list { display: grid; gap: 0; }
.res-item { border-top: 1px solid var(--rule-soft); padding: 26px 0; }
.res-item:first-child { border-top: none; padding-top: 0; }
.res-item h3 { font-size: 15.5px; margin-bottom: 10px; }
.res-item p { font-size: 15.5px; color: var(--ink-mid); margin: 0; }

/* Forms */
.form-card { background: var(--paper); border: 1px solid var(--rule); padding: 44px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-full { grid-column: 1 / -1; }
.f-label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); font-weight: 400; margin-bottom: 8px; }
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--rule);
  background: var(--bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal); }
textarea { min-height: 130px; resize: vertical; }
.form-actions { margin-top: 26px; }
.form-success {
  border: 1px solid var(--teal);
  background: var(--tint);
  padding: 26px 28px;
  font-size: 15.5px;
  color: var(--ink-mid);
}
.form-success b { display: block; color: var(--ink); margin-bottom: 6px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; font-size: 13px; }

/* Booking */
.book-card { background: var(--paper); border: 1px solid var(--rule); padding: 44px; }
.book-sub { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin: 26px 0 12px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--rule);
  background: var(--bg);
  padding: 10px 16px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink-mid);
  cursor: pointer;
}
.chip:hover { border-color: var(--teal); color: var(--ink); }
.chip.sel { background: var(--navy); border-color: var(--navy); color: #fff; }
.book-actions { margin-top: 30px; }

/* Footer */
footer.site { background: var(--navy-deep); color: #b8bedf; padding: 72px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; }
.foot-brand img { height: 34px; width: auto; display: block; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.92; }
.foot-brand p { font-size: 14px; color: #9aa1c9; max-width: 280px; margin: 0 0 16px; }
.foot-site { color: #d8dcf2; font-size: 13.5px; text-decoration: none; border-bottom: 1px solid rgba(122,194,192,0.5); }
.foot-site:hover { color: #fff; }
footer h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; font-weight: 400; margin: 0 0 18px; }
footer ul { list-style: none; padding: 0; margin: 0; font-size: 14px; line-height: 2; }
footer ul a { color: #b8bedf; text-decoration: none; }
footer ul a:hover { color: #7ac2c0; }
.foot-news p { font-size: 14px; color: #9aa1c9; margin: 0 0 16px; }
.news-form { display: flex; }
.news-form input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid rgba(184,190,223,0.35);
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  min-width: 0;
}
.news-form input::placeholder { color: #8089b8; }
.news-form input:focus { outline: none; border-color: var(--teal-soft); }
.news-form button {
  padding: 12px 20px;
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.news-form button:hover { background: var(--teal-soft); border-color: var(--teal-soft); }
.news-success { font-size: 14px; color: #7ac2c0; border: 1px solid rgba(122,194,192,0.5); padding: 12px 16px; }
.foot-meta {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,190,223,0.18);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #8089b8;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(29,33,66,0.93);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: 90vw; }
.lightbox img { max-width: 88vw; max-height: 78vh; display: block; }
.lightbox figcaption { color: #b8bedf; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; padding-top: 14px; text-align: center; }
.lb-close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.lb-close:hover { border-color: #7ac2c0; color: #7ac2c0; }

/* Responsive */
@media (max-width: 980px) {
  section { padding: 66px 0; }
  .hero { padding: 56px 0; }
  .hero-grid, .split-grid { grid-template-columns: 1fr; gap: 44px; }
  .sol-grid { grid-template-columns: 1fr; }
  .sol-grid .sol-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .val-grid, .why-grid, .step-grid { grid-template-columns: 1fr; gap: 36px; }
  .step { border-left: none; border-top: 1px solid var(--rule); padding: 28px 0 4px; }
  .step:first-child { border-top: none; padding-top: 0; }
  .sol-row, .res-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 56px; padding-bottom: 56px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card, .book-card { padding: 30px 24px; }
  .tslider { padding: 0 0 64px; }
  .t-arrow { top: auto; bottom: 0; transform: none; }
  .t-prev { left: calc(50% - 50px); }
  .t-next { right: calc(50% - 50px); }
  .t-dots { display: none; }

  .head-row { flex-wrap: wrap; }
  .menu-btn {
    display: inline-block;
    background: none;
    border: 1px solid var(--rule);
    padding: 9px 16px;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--ink);
  }
  nav.primary { display: none; width: 100%; }
  nav.primary.open { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 0 8px; border-top: 1px solid var(--rule); margin-top: 14px; }
  nav.primary.open .nav-link { display: block; width: 100%; text-align: left; padding: 13px 0; border-bottom: 1px solid var(--rule-soft); }
  .drop, .drop-wide { position: static; box-shadow: none; border: none; border-left: 2px solid var(--teal); padding: 6px 0 10px 18px; min-width: 0; }
  .drop-wide { flex-direction: column; gap: 14px; }
  .btn-nav { margin-top: 16px; text-align: center; }
}
@media (max-width: 540px) {
  .wrap, .head-row, .hero-grid, .sec-head, .sol-grid, .val-grid, .split-grid, .step-grid { padding-left: 22px; padding-right: 22px; }
  .sol-row, .res-grid { padding-left: 22px; padding-right: 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
}
