:root {
  --ink: #0d1514;
  --muted: #6e746f;
  --paper: #f8f4ec;
  --cream: #fffaf2;
  --dark: #061315;
  --forest: #09261f;
  --forest-soft: #10372c;
  --gold: #d99a42;
  --gold-2: #f1bd6d;
  --line: rgba(18, 28, 25, .12);
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 26, 22, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 34px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 42px);
  padding: 0 clamp(18px, 5vw, 54px);
  color: rgba(255,255,255,.78);
  background: rgba(3, 13, 15, .72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  font-size: 13px;
}
.topbar span { margin-left: auto; }

.site-header {
  position: fixed;
  inset: 34px 0 auto;
  z-index: 55;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(18px, 5vw, 54px);
  color: var(--white);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 242, .96);
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
  backdrop-filter: blur(16px);
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 48px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 8px 8px;
  position: relative;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-top: 1px solid var(--gold);
  transform: skewX(-25deg);
}
.brand-mark::after { transform: skewX(25deg); }
.brand strong { display: block; font-size: 13px; letter-spacing: .1em; }
.brand small { display: block; font-size: 21px; line-height: 1; letter-spacing: .05em; }
.nav { justify-self: center; display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 750; text-transform: uppercase; }
.nav a { opacity: .86; }
.nav a:hover { color: var(--gold-2); opacity: 1; }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.header-cta, .button-primary {
  color: #1a1105;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 28px rgba(217,154,66,.28);
}
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.menu-button { display: none; justify-self: end; color: inherit; background: transparent; border: 0; font-size: 27px; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
  display: grid;
  align-items: end;
  padding-top: 110px;
}
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 64% center; filter: saturate(1.04) contrast(1.02); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4,13,15,.58) 0%, rgba(4,13,15,.34) 34%, rgba(4,13,15,.04) 68%),
    linear-gradient(0deg, rgba(4,13,15,.42) 0%, rgba(4,13,15,0) 54%, rgba(4,13,15,.22) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 170px clamp(18px, 5vw, 54px);
}
.eyebrow, .section-label {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(42px, 5.8vw, 76px); line-height: 1.02; letter-spacing: 0; }
h1 span, .accent { color: var(--gold-2); }
.hero-copy { max-width: 610px; color: rgba(255,255,255,.88); font-size: clamp(17px, 1.8vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-line { margin-top: 30px; color: rgba(255,255,255,.78); font-size: 14px; }
.trust-line strong { display: block; margin-top: 7px; color: var(--white); font-size: 18px; }
.feature-strip {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 5vw, 54px);
  right: clamp(18px, 5vw, 54px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(12, 18, 16, .74);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.feature-strip article { display: grid; grid-template-columns: 46px 1fr; gap: 4px 16px; padding: 24px 28px; border-right: 1px solid rgba(255,255,255,.1); }
.feature-strip article:last-child { border-right: 0; }
.line-icon { grid-row: span 2; color: var(--gold-2); font-size: 30px; line-height: 1; }
.feature-strip strong { font-size: 15px; }
.feature-strip small { color: rgba(255,255,255,.66); }

.section { padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 54px); }
.section-heading { margin-bottom: 32px; }
.section-heading.split { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2, .comfort h2, .lead h2 { margin-bottom: 0; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.06; letter-spacing: 0; }
.section-heading p { max-width: 610px; color: var(--muted); font-size: 17px; }
.text-link { color: var(--gold); font-weight: 850; }

.collection { background: linear-gradient(180deg, var(--cream), #f4efe7); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { overflow: hidden; background: var(--white); border: 1px solid rgba(20,28,24,.08); border-radius: 8px; box-shadow: var(--shadow); transition: transform .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 28px 60px rgba(20,24,20,.16); }
.product-card img { width: 100%; aspect-ratio: 1.28 / 1; object-fit: cover; }
.product-body { position: relative; padding: 24px; }
.pill { position: absolute; top: -52px; left: 16px; margin: 0; padding: 8px 14px; background: rgba(255,255,255,.88); border-radius: 999px; font-size: 13px; font-weight: 850; }
.product-card h3 { margin-bottom: 8px; font-size: 20px; }
.product-card p:not(.pill) { min-height: 50px; color: var(--muted); font-size: 14px; }
.product-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; color: var(--muted); font-size: 13px; }
.product-card dt, .product-card dd { margin: 0; }
.product-card dd { color: var(--ink); font-weight: 850; }
.product-card a { display: flex; justify-content: center; padding: 12px 14px; border: 1px solid rgba(217,154,66,.55); border-radius: 6px; color: #9f651b; font-weight: 800; font-size: 14px; }
.mini-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 38px; background: rgba(20,30,24,.1); border: 1px solid rgba(20,30,24,.1); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.mini-benefits span { padding: 24px; background: rgba(255,255,255,.82); font-weight: 800; }

.comfort {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding: clamp(70px, 8vw, 110px) clamp(18px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4,18,16,.96), rgba(4,28,22,.84)),
    radial-gradient(circle at 10% 20%, rgba(217,154,66,.18), transparent 30%),
    var(--forest);
}
.comfort-copy p { color: rgba(255,255,255,.78); }
.check-list { display: grid; gap: 12px; margin: 28px 0 30px; padding: 0; list-style: none; color: rgba(255,255,255,.86); }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-2); font-weight: 900; }
.comfort-media { overflow: hidden; border-radius: 8px; box-shadow: 0 30px 70px rgba(0,0,0,.34); }
.comfort-media img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; }

.packages { background: #f7f0e6; }
.package-layout { display: grid; grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr); gap: 28px; align-items: stretch; }
.package-copy { display: grid; gap: 14px; }
.package-copy article { padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 28px rgba(20,28,24,.06); }
.package-copy strong { display: block; margin-bottom: 8px; font-size: 22px; }
.package-copy span { color: var(--muted); }
.package-layout img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }

.process { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding: 0; margin: 48px 0 0; list-style: none; }
.steps li { position: relative; min-height: 145px; padding: 72px 18px 0; text-align: center; }
.steps li::before { content: ""; position: absolute; top: 36px; left: 0; right: 0; border-top: 1px dashed rgba(217,154,66,.55); }
.steps li:first-child::before { left: 50%; }
.steps li:last-child::before { right: 50%; }
.steps span { position: absolute; top: 0; left: 50%; transform: translateX(-50%); display: grid; place-items: center; width: 72px; height: 72px; background: var(--cream); border: 1px solid rgba(217,154,66,.45); border-radius: 50%; color: var(--gold); font-weight: 900; font-size: 22px; }
.steps strong { display: block; margin-bottom: 6px; }
.steps small { color: var(--muted); }

.portfolio-gallery {
  margin-top: 64px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(7,18,13,.08);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,240,230,.88)),
    var(--cream);
  box-shadow: 0 28px 80px rgba(20,28,24,.08);
}

.portfolio-gallery-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, 1.08fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  margin-bottom: 28px;
}

.portfolio-gallery-title {
  margin: 10px 0 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: .98;
  letter-spacing: .04em;
}

.portfolio-gallery-intro {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.portfolio-gallery-stage {
  position: relative;
}

.portfolio-gallery-viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7,18,13,.12);
  border-radius: 10px;
  background: #08110f;
  box-shadow: 0 24px 70px rgba(7,18,13,.18);
}

.portfolio-gallery-track {
  display: flex;
  transition: transform .62s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.portfolio-carousel-slide {
  flex: 0 0 100%;
  margin: 0;
}

.portfolio-carousel-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #101816;
}

.portfolio-gallery-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,13,15,.08), rgba(4,13,15,.34)),
    radial-gradient(circle at 84% 12%, rgba(217,154,66,.12), transparent 28%);
}

.portfolio-gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: #fff;
  background: rgba(6,16,15,.76);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.portfolio-gallery-btn:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(217,154,66,.58);
  background: rgba(6,16,15,.9);
}

.portfolio-gallery-btn.is-prev { left: 18px; }
.portfolio-gallery-btn.is-next { right: 18px; }

.portfolio-gallery-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.portfolio-gallery-counter {
  min-width: 72px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.portfolio-gallery-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(7,18,13,.08);
  border-radius: 999px;
}

.portfolio-gallery-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #f0d08a);
  border-radius: inherit;
  transition: width .62s cubic-bezier(.22, 1, .36, 1);
}

.portfolio-gallery.is-large-set .portfolio-gallery-footer {
  grid-template-columns: auto 1fr;
}

.portfolio-gallery-dots {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-gallery-dots[hidden] {
  display: none;
}

.portfolio-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20,28,24,.16);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}

.portfolio-carousel-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.lead {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  padding: clamp(70px, 8vw, 105px) clamp(18px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4,16,15,.96), rgba(5,30,24,.92)),
    var(--dark);
}
.lead-copy p { max-width: 560px; color: rgba(255,255,255,.78); font-size: 17px; }
.contact-list { display: grid; gap: 14px; margin-top: 30px; color: rgba(255,255,255,.82); }
.lead-form { display: grid; gap: 14px; padding: 0; }
.lead-form label { display: grid; gap: 7px; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 800; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  padding: 13px 15px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  outline: none;
}
.lead-form textarea { resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,154,66,.16); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-status { min-height: 22px; margin: 0; color: var(--gold-2); font-weight: 850; }

.site-footer {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 54px) 24px;
  color: rgba(255,255,255,.72);
  background: #061011;
  font-size: 14px;
}
.footer-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.footer-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.08;
}
.footer-top { color: var(--gold-2); font-weight: 850; white-space: nowrap; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
}
.footer-links a {
  min-width: 0;
  min-height: 150px;
  padding: 20px 18px;
  background: rgba(255,255,255,.045);
  transition: background .2s ease, transform .2s ease;
  overflow: hidden;
}
.footer-links a:hover,
.footer-links a[aria-current="page"] {
  background: rgba(217,154,66,.14);
}
.footer-links a:hover { transform: translateY(-2px); }
.footer-links strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: clamp(10px, .72vw, 13px);
  line-height: 1.35;
  letter-spacing: .05em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-links span {
  display: block;
  color: rgba(255,255,255,.68);
  line-height: 1.45;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1500px) {
  .footer-links { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .footer-links a { min-height: 170px; padding: 22px; }
  .footer-links strong { font-size: 13px; letter-spacing: .06em; }
}

@media (max-width: 1280px) {
  .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1120px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip article:nth-child(2) { border-right: 0; }
  .feature-strip article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 920px) {
  .topbar span { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .nav { position: fixed; inset: 92px 14px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; color: var(--ink); background: rgba(255,250,242,.98); border-radius: 8px; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px; }
  .header-cta { display: none; }
  .menu-button { display: inline-flex; }
  .hero-content { margin-bottom: 260px; }
  .collection .section-heading.split, .packages .section-heading.split, .process .section-heading.split { display: block; }
  .comfort, .package-layout, .lead { grid-template-columns: 1fr; }
  .mini-benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .steps li { min-height: 0; padding: 0 0 0 92px; text-align: left; }
  .steps li::before { display: none; }
  .steps span { left: 0; transform: none; }
  .portfolio-gallery-head { grid-template-columns: 1fr; }
  .portfolio-gallery-footer { grid-template-columns: 1fr; }
  .portfolio-gallery-dots { justify-content: flex-start; }
  .portfolio-gallery-btn { width: 44px; height: 44px; font-size: 26px; }
  .portfolio-gallery-btn.is-prev { left: 10px; }
  .portfolio-gallery-btn.is-next { right: 10px; }
}

@media (max-width: 620px) {
  .topbar { gap: 14px; font-size: 11px; padding: 0 14px; }
  .site-header { inset: 34px 0 auto; padding: 14px; }
  .brand-mark { width: 38px; height: 32px; }
  .brand small { font-size: 17px; }
  .hero { min-height: 860px; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,13,15,.92), rgba(4,13,15,.3)); }
  .hero-content { width: calc(100% - 28px); margin: 0 14px 330px; }
  h1 { font-size: 42px; }
  .hero-actions .button { width: 100%; }
  .feature-strip { left: 14px; right: 14px; bottom: 14px; grid-template-columns: 1fr; }
  .feature-strip article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding: 16px; }
  .feature-strip article:last-child { border-bottom: 0; }
  .section, .comfort, .lead { padding-left: 16px; padding-right: 16px; }
  .product-grid, .mini-benefits, .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-head { display: block; }
  .footer-top { display: inline-flex; margin-top: 18px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-links a { min-height: auto; }
}


/* WAU visual layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: url('/static/media/ai-wau-sky-texture.jpg') center / cover no-repeat;
  opacity: .08;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(6, 19, 21, .82));
}

.trust-line {
  width: fit-content;
  max-width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(6, 19, 21, .44);
  backdrop-filter: blur(14px);
}

.resort-vision {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(72px, 9vw, 122px) clamp(18px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 19, 21, .96), rgba(12, 39, 33, .88)),
    url('/static/media/ai-wau-sky-texture.jpg') center / cover no-repeat;
  overflow: hidden;
}

.resort-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 20%, rgba(241, 189, 109, .18), transparent 28%),
    radial-gradient(circle at 85% 76%, rgba(98, 145, 118, .2), transparent 34%);
}

.resort-media,
.resort-copy {
  position: relative;
  z-index: 1;
}

.resort-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 36px 86px rgba(0,0,0,.38);
}

.resort-media img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.resort-stats {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(5, 16, 17, .72);
  backdrop-filter: blur(16px);
}

.resort-stats span {
  display: grid;
  gap: 3px;
  padding: 16px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.045);
  font-size: 13px;
}

.resort-stats strong {
  color: var(--gold-2);
  font-size: 20px;
  line-height: 1;
}

.resort-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.04;
}

.resort-copy p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
}

.resort-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.resort-points article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}

.resort-points strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-2);
}

.resort-points span {
  color: rgba(255,255,255,.72);
}

.site-plan {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,250,242,.96), rgba(247,240,230,.94)),
    url('/static/media/ai-wau-sky-texture.jpg') center / cover no-repeat;
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: stretch;
}

.plan-layout > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.plan-cards {
  display: grid;
  gap: 14px;
}

.plan-cards article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 18px;
  align-content: center;
  min-height: 158px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 34px rgba(20,28,24,.07);
}

.plan-cards span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.plan-cards strong {
  font-size: 20px;
}

.plan-cards p {
  margin: 0;
  color: var(--muted);
}

.comfort {
  background:
    linear-gradient(90deg, rgba(4,18,16,.97), rgba(4,28,22,.86)),
    url('/static/media/ai-wau-sky-texture.jpg') center / cover no-repeat,
    var(--forest);
}

.packages {
  background:
    linear-gradient(180deg, rgba(247,240,230,.98), rgba(239,230,214,.94)),
    url('/static/media/ai-wau-sky-texture.jpg') center / cover no-repeat;
}

.package-layout img {
  object-position: center;
}

.lead {
  position: relative;
  background:
    linear-gradient(90deg, rgba(4,16,15,.94), rgba(5,30,24,.78)),
    url('/static/media/ai-wau-cta-bg.jpg') center / cover no-repeat,
    var(--dark);
  overflow: hidden;
}

.lead::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 72% 18%, rgba(241,189,109,.16), transparent 28%);
}

.lead-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-form {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(4, 15, 16, .56);
  box-shadow: 0 30px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}

@media (max-width: 1120px) {
  .resort-vision,
  .plan-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .resort-stats {
    position: static;
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .resort-media img,
  .plan-layout > img {
    min-height: 0;
    aspect-ratio: 1.25 / 1;
  }
}

@media (max-width: 620px) {
  .resort-vision {
    padding-left: 16px;
    padding-right: 16px;
  }

  .plan-cards article {
    grid-template-columns: 44px 1fr;
    min-height: 0;
    padding: 18px;
  }

  .plan-cards span {
    font-size: 22px;
  }

  .lead-form {
    padding: 18px;
  }
}


/* Photo hero direction based on reference */
.hero {
  min-height: 100svh;
  align-items: end;
}

.hero-media img {
  object-position: 62% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 11, 13, .52) 0%, rgba(2, 11, 13, .26) 31%, rgba(2, 11, 13, 0) 66%),
    linear-gradient(0deg, rgba(2, 11, 13, .30) 0%, rgba(2, 11, 13, 0) 52%, rgba(2, 11, 13, .18) 100%);
}

.hero-content {
  width: min(560px, calc(100% - 36px));
  margin-bottom: 150px;
}

.hero-content .eyebrow {
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 12px;
}

h1 {
  max-width: 570px;
  margin-bottom: 16px;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.02;
}

.hero-copy {
  max-width: 520px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 24px;
}

.hero-actions .button {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.trust-line {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 12px 15px;
  background: rgba(4, 15, 16, .5);
}

.trust-line span {
  font-size: 12px;
}

.trust-line strong {
  margin-top: 0;
  font-size: 15px;
}

.feature-strip {
  bottom: 22px;
  background: rgba(6, 13, 12, .86);
  border-color: rgba(255,255,255,.14);
}

.feature-strip article {
  grid-template-columns: 40px 1fr;
  padding: 19px 24px;
}

.line-icon {
  font-size: 25px;
}

.feature-strip strong {
  font-size: 14px;
}

.feature-strip small {
  font-size: 12px;
}

@media (min-width: 1440px) {
  .hero {
    min-height: 100svh;
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: 900px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-content {
    margin-bottom: 285px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 880px;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(2,11,13,.44) 0%, rgba(2,11,13,.20) 42%, rgba(2,11,13,.04) 76%, rgba(2,11,13,.18) 100%);
  }

  .hero-content {
    margin-bottom: 330px;
  }

  h1 {
    font-size: 40px;
  }
}


@media (max-width: 820px) {
  .hero { min-height: 100svh; align-items: end; }
  .hero-media img { object-position: 60% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4,13,15,.62), rgba(4,13,15,.26)),
      linear-gradient(0deg, rgba(4,13,15,.48), rgba(4,13,15,0) 55%, rgba(4,13,15,.22));
  }
  .hero-content { margin-bottom: 145px; }
  .feature-strip { position: relative; left: auto; right: auto; bottom: auto; margin: -100px 18px 22px; grid-template-columns: 1fr; }
  .feature-strip article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .feature-strip article:last-child { border-bottom: 0; }
}

/* Final hero brightness override - 2026-06-14 */
.hero {
  min-height: 104svh !important;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 11, 13, .28) 0%, rgba(2, 11, 13, .10) 34%, rgba(2, 11, 13, 0) 70%),
    linear-gradient(0deg, rgba(2, 11, 13, .10) 0%, rgba(2, 11, 13, 0) 55%, rgba(2, 11, 13, .06) 100%) !important;
}

.hero::after {
  background: linear-gradient(180deg, transparent, rgba(6, 19, 21, .18)) !important;
}

@media (max-width: 820px) {
  .hero { min-height: 104svh !important; }
  .hero-shade {
    background: linear-gradient(0deg, rgba(2,11,13,.20) 0%, rgba(2,11,13,.06) 45%, rgba(2,11,13,0) 78%, rgba(2,11,13,.05) 100%) !important;
  }
}

/* Top contact bar modernization - 2026-06-14 */
.topbar {
  height: 42px;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.88);
  background: rgba(4, 13, 15, .42);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.topbar-note {
  margin: 0;
  white-space: nowrap;
  font-weight: 700;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.topbar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  backdrop-filter: blur(12px);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.topbar-button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.38);
}

.topbar-button-chat {
  color: #0f1a12;
  background: linear-gradient(135deg, #ffffff, #d8f6df);
  border-color: rgba(255,255,255,.7);
}

.site-header {
  inset: 42px 0 auto;
}

@media (max-width: 920px) {
  .topbar {
    height: auto;
    min-height: 44px;
    align-items: center;
    padding: 7px 14px;
  }
  .topbar-note { display: none; }
  .topbar-actions {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }
  .topbar-button {
    flex: 1;
    min-width: 0;
    padding: 0 8px;
    font-size: 11px;
    white-space: nowrap;
  }
  .site-header {
    inset: 44px 0 auto;
  }
}

@media (max-width: 520px) {
  .topbar-actions { gap: 5px; }
  .topbar-button { font-size: 0; }
  .topbar-button::after { font-size: 11px; }
  .topbar-button[href^="mailto"]::after { content: "Email"; }
  .topbar-button[href^="tel"]::after { content: "Skambinti"; }
  .topbar-button-chat::after { content: "WhatsApp"; }
}

/* Light hero blocks override - 2026-06-15 */
.trust-line {
  color: rgba(20, 30, 26, .74) !important;
  background: rgba(255, 255, 255, .74) !important;
  border-color: rgba(255, 255, 255, .72) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .10) !important;
}

.trust-line strong {
  color: #10201b !important;
}

.feature-strip {
  background: rgba(255, 255, 255, .78) !important;
  border-color: rgba(255, 255, 255, .72) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12) !important;
}

.feature-strip article {
  border-right-color: rgba(16, 32, 27, .10) !important;
}

.feature-strip article:nth-child(-n+2) {
  border-bottom-color: rgba(16, 32, 27, .10) !important;
}

.feature-strip strong {
  color: #10201b !important;
}

.feature-strip small {
  color: rgba(16, 32, 27, .64) !important;
}

.line-icon {
  color: #b87925 !important;
}

@media (max-width: 820px) {
  .feature-strip {
    background: rgba(255, 255, 255, .84) !important;
    margin-top: -82px !important;
  }
  .feature-strip article {
    border-bottom-color: rgba(16, 32, 27, .10) !important;
  }
}

/* Premium model cards modernization - 2026-06-15 */
.models-heading {
  align-items: start !important;
  margin-bottom: 38px !important;
}

.models-intro {
  max-width: 640px !important;
  margin: 14px 0 0 !important;
  color: rgba(16, 32, 27, .66) !important;
  font-size: 17px !important;
}

.product-grid {
  gap: 22px !important;
}

.product-card {
  border: 1px solid rgba(16, 32, 27, .10) !important;
  background: rgba(255, 255, 255, .86) !important;
  box-shadow: 0 20px 52px rgba(20, 28, 24, .10) !important;
}

.product-card img {
  aspect-ratio: 1.18 / 1 !important;
  object-fit: cover !important;
  transition: transform .45s ease, filter .45s ease !important;
}

.product-card:hover img {
  transform: scale(1.035) !important;
  filter: saturate(1.05) contrast(1.03) !important;
}

.product-body {
  padding: 22px !important;
}

.pill {
  top: -48px !important;
  left: 14px !important;
  background: rgba(255, 255, 255, .92) !important;
  border: 1px solid rgba(255, 255, 255, .75) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .12) !important;
  color: #10201b !important;
}

.product-card h3 {
  margin-bottom: 6px !important;
  font-size: 22px !important;
  letter-spacing: 0 !important;
}

.product-card p:not(.pill) {
  min-height: 46px !important;
  color: rgba(16, 32, 27, .62) !important;
}

.product-card dl {
  margin: 16px 0 18px !important;
}

.product-card a {
  min-height: 42px !important;
  border-color: rgba(184, 121, 37, .34) !important;
  background: rgba(184, 121, 37, .08) !important;
  color: #8b5719 !important;
  transition: background .2s ease, color .2s ease, transform .2s ease !important;
}

.product-card a:hover {
  background: #b87925 !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.model-advisor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 26px 28px;
  border: 1px solid rgba(16, 32, 27, .10);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(248,244,236,.78));
  box-shadow: 0 18px 44px rgba(20, 28, 24, .08);
}

.model-advisor strong {
  display: block;
  max-width: 720px;
  color: #10201b;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
}

.advisor-label {
  display: block;
  margin-bottom: 8px;
  color: #b87925;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-specs {
  margin-top: 18px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.model-specs span {
  display: grid !important;
  gap: 5px !important;
  padding: 20px !important;
  border: 1px solid rgba(16, 32, 27, .08) !important;
  background: rgba(255,255,255,.58) !important;
}

.model-specs strong {
  color: #10201b !important;
  font-size: 14px !important;
}

.model-specs small {
  color: rgba(16, 32, 27, .56) !important;
  font-size: 12px !important;
}

@media (max-width: 920px) {
  .model-advisor {
    display: grid;
    padding: 22px;
  }
  .model-advisor .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .models-intro {
    font-size: 15px !important;
  }
  .product-card img {
    aspect-ratio: 1.35 / 1 !important;
  }
}

/* Final polish pass - 2026-06-15 */
.lead {
  background:
    linear-gradient(90deg, rgba(4,16,15,.84), rgba(5,30,24,.56)),
    url('/static/media/ai-wau-cta-bg.jpg') center / cover no-repeat,
    var(--dark) !important;
}

.lead-copy p {
  max-width: 610px !important;
}

.contact-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px !important;
  margin-top: 34px !important;
}

.contact-list a,
.contact-list span {
  display: grid !important;
  gap: 5px !important;
  min-height: 78px;
  align-content: center;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.90) !important;
  backdrop-filter: blur(14px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.contact-list a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.30);
}

.contact-list a > span {
  display: block !important;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.62) !important;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: none;
}

.contact-list strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.lead-form {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.18) !important;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.20) !important;
}

.site-footer {
  background: #071211 !important;
}

.footer-links a {
  min-height: 150px !important;
}

.footer-links span {
  font-size: 13px !important;
}

@media (max-width: 920px) {
  .contact-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .contact-list a {
    min-height: 64px;
  }
  .contact-list strong {
    font-size: 14px;
  }
}

/* Realization links polish - 2026-06-15 */
.button-work {
  color: #10201b !important;
  border-color: rgba(255,255,255,.70) !important;
  background: rgba(255,255,255,.72) !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.10) !important;
}

.button-work:hover {
  background: #fff !important;
}

.advisor-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button-quiet {
  color: #10201b !important;
  border-color: rgba(16, 32, 27, .12) !important;
  background: rgba(255,255,255,.72) !important;
  box-shadow: none !important;
}

.button-quiet:hover {
  background: #fff !important;
}

@media (max-width: 920px) {
  .advisor-actions {
    display: grid;
    width: 100%;
  }
  .advisor-actions .button {
    width: 100%;
  }
}


/* GLAMPING HOTELS / Ø18 m business sections */
.large-dome { background: linear-gradient(180deg, #f6efe5, #fffaf2); }
.large-dome-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 28px; align-items: stretch; }
.large-dome-media { position: relative; overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); min-height: 470px; }
.large-dome-media img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.large-badge { position: absolute; left: 22px; bottom: 22px; padding: 18px 20px; border-radius: 8px; color: var(--white); background: rgba(6,19,21,.78); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(14px); }
.large-badge strong { display: block; color: var(--gold-2); font-size: 30px; line-height: 1; }
.large-badge span { display: block; margin-top: 7px; color: rgba(255,255,255,.78); font-weight: 750; }
.large-dome-copy { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.large-dome-copy h3 { margin-bottom: 12px; font-size: clamp(26px, 2.4vw, 36px); line-height: 1.08; }
.large-dome-copy p { color: var(--muted); }
.large-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.large-specs span { padding: 16px; border-radius: 7px; background: #f7f0e6; border: 1px solid rgba(20,28,24,.08); }
.large-specs strong { display: block; margin-bottom: 5px; }
.large-specs small { color: var(--muted); }
.business { background: var(--forest); color: var(--white); }
.business .section-heading p { color: rgba(255,255,255,.72); }
.business-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.business-grid article { min-height: 230px; padding: 26px; border-radius: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 18px 42px rgba(0,0,0,.16); }
.business-grid span { display: inline-flex; margin-bottom: 24px; color: var(--gold-2); font-weight: 900; letter-spacing: .08em; }
.business-grid strong { display: block; margin-bottom: 10px; font-size: 20px; }
.business-grid p { color: rgba(255,255,255,.72); }
@media (max-width: 980px) {
  .large-dome-layout { grid-template-columns: 1fr; }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .large-specs, .business-grid { grid-template-columns: 1fr; }
}


/* Dashboard-ready lead funnel polish - 2026-06-15 */
.lead-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.lead-form select option {
  color: #10201b;
  background: #fffaf2;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255,255,255,.46);
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.45;
}

.lead-form button[type="submit"] {
  width: 100%;
  min-height: 54px;
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none !important;
}

@media (max-width: 620px) {
  .form-note {
    font-size: 11px;
  }
}


/* Ø18 m residential glamping polish - 2026-06-14 */
html { scroll-padding-top: 132px; }
section[id] { scroll-margin-top: 132px; }
.large-dome-layout { grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); }
.large-dome-media img { object-position: center; }
.residential-18 { background: linear-gradient(180deg, #fffaf2, #f4efe7); }
.residential-layout { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr); gap: 28px; align-items: stretch; }
.residential-copy { padding: 32px; border-radius: 8px; background: #ffffff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.residential-copy h3 { margin-bottom: 12px; font-size: clamp(27px, 2.6vw, 38px); line-height: 1.08; }
.residential-copy p { color: var(--muted); }
.residential-list { display: grid; gap: 12px; margin: 24px 0 28px; padding: 0; list-style: none; color: rgba(16, 32, 27, .76); }
.residential-list li { position: relative; padding-left: 28px; }
.residential-list li::before { content: "✓"; position: absolute; left: 0; color: #b87925; font-weight: 900; }
.residential-media { overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); min-height: 480px; }
.residential-media img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: center; }
@media (max-width: 1100px) { .nav { gap: 18px; font-size: 12px; } }
@media (max-width: 980px) { .residential-layout { grid-template-columns: 1fr; } .residential-media, .residential-media img { min-height: 0; } .residential-media img { aspect-ratio: 1.65 / 1; } }
@media (max-width: 640px) { html { scroll-padding-top: 112px; } section[id] { scroll-margin-top: 112px; } .residential-copy { padding: 22px; } }


/* model navigation polish 2026-06-16 */
.nav a.active,.nav a[aria-current="page"]{color:var(--gold-2);opacity:1}.nav .model-nav-link{display:inline-flex;align-items:center;gap:6px;padding:7px 10px;border:1px solid rgba(224,166,74,.34);border-radius:999px;background:rgba(255,255,255,.07);line-height:1;white-space:nowrap}.nav .model-nav-link:before{content:"";width:18px;height:11px;border:2px solid currentColor;border-bottom:0;border-radius:20px 20px 0 0;opacity:.82}.nav .model-nav-link span{font-size:11px;letter-spacing:.01em}.nav .model-nav-link strong{font-size:12px;font-weight:900;letter-spacing:.01em}.nav .model-nav-link:hover,.nav .model-nav-link.active{border-color:rgba(224,166,74,.82);background:rgba(224,166,74,.16)}.model-switcher{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}.model-switcher a{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.25);color:#fff;background:rgba(255,255,255,.09);font-weight:850}.model-switcher a:before{content:"";width:22px;height:13px;border:2px solid currentColor;border-bottom:0;border-radius:22px 22px 0 0;opacity:.85}.model-switcher a.active{color:var(--ink);background:var(--gold-2);border-color:var(--gold-2)}@media(max-width:1240px){.nav{gap:12px;font-size:12px}.nav .model-nav-link{padding:7px 8px}}@media(max-width:920px){.nav .model-nav-link{justify-content:flex-start;border-radius:8px;background:rgba(224,166,74,.08)}.nav .model-nav-link:before{color:var(--gold-2)}.model-switcher{overflow-x:auto;flex-wrap:nowrap;padding-bottom:6px}.model-switcher a{flex:0 0 auto}}


/* model advisor links polish 2026-06-16 */
.model-advisor-links{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}.model-advisor-links a{display:inline-flex;align-items:center;gap:8px;padding:9px 13px;border-radius:999px;border:1px solid rgba(224,166,74,.38);background:rgba(224,166,74,.08);font-weight:850;color:var(--ink)}.model-advisor-links a:before{content:"";width:20px;height:12px;border:2px solid currentColor;border-bottom:0;border-radius:22px 22px 0 0;color:var(--gold-2)}.model-advisor-links a:hover{background:rgba(224,166,74,.18);border-color:rgba(224,166,74,.72)}


/* arch footer ecosystem sync 2026-06-17 */
.site-footer--premium{padding:clamp(48px,6vw,72px) 0 24px;color:var(--muted);background:linear-gradient(180deg,#f4f8fb 0%,#eef6ff 48%,#e8f2ee 100%);font-size:14px;border-top:0}.site-footer .wrap{width:min(var(--max),calc(100% - 36px));margin:0 auto}.site-footer--premium .footer-head{display:flex;align-items:end;justify-content:space-between;gap:28px;margin-bottom:clamp(28px,4vw,38px)}.site-footer--premium .footer-head h2{max-width:760px;margin:0;color:var(--ink);font-family:Georgia,"Times New Roman",serif;font-size:clamp(30px,3.6vw,48px);line-height:1.04;letter-spacing:0}.footer-kicker{display:inline-flex;align-items:center;gap:8px;margin:0 0 14px;color:#1f6190;font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}.footer-kicker:before{content:"";width:28px;height:1px;background:linear-gradient(90deg,#ba8b3a,transparent)}.site-footer--premium .footer-top{color:var(--green);font-weight:850;white-space:nowrap;padding:10px 14px;border-radius:999px;border:1px solid rgba(47,109,87,.18);background:rgba(255,255,255,.72)}.site-footer--premium .footer-links{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;overflow:visible;border:0;border-radius:0;background:transparent;box-shadow:none}.site-footer--premium .footer-links a{min-width:0;min-height:148px;padding:20px 18px;border-radius:18px;border:1px solid rgba(20,37,55,.08);background:rgba(255,255,255,.92);box-shadow:0 14px 36px rgba(16,32,48,.07);transition:background .22s ease,transform .22s ease,border-color .22s ease,box-shadow .22s ease;overflow:hidden;text-decoration:none}.site-footer--premium .footer-links a:hover{background:#fff;transform:translateY(-3px);border-color:rgba(47,109,87,.22);box-shadow:0 20px 48px rgba(16,32,48,.12)}.site-footer--premium .footer-links a[aria-current="page"]{background:linear-gradient(180deg,#fff,#f2faf6);border-color:rgba(47,109,87,.28);box-shadow:0 18px 44px rgba(47,109,87,.12)}.site-footer--premium .footer-links strong{display:block;margin-bottom:10px;color:#17415f;font-size:clamp(9px,.58vw,11px);line-height:1.28;letter-spacing:.05em;text-transform:uppercase;overflow-wrap:normal;word-break:keep-all;hyphens:none}.site-footer--premium .footer-links span{display:block;color:#607080;line-height:1.48;font-size:13px}.site-footer--premium .footer-bottom{display:flex;justify-content:space-between;gap:18px;margin-top:28px;padding-top:22px;border-top:1px solid rgba(20,37,55,.10);color:rgba(23,32,28,.58);font-size:13px;flex-wrap:wrap}.site-footer--premium .footer-bottom a{color:var(--green);font-weight:750}@media(min-width:1500px){.site-footer--premium .footer-links{grid-template-columns:repeat(8,minmax(0,1fr))}.site-footer--premium .footer-links a{min-height:162px;padding:22px 16px}.site-footer--premium .footer-links strong{font-size:10.5px}}@media(max-width:1280px){.site-footer--premium .footer-links{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:980px){.site-footer--premium .footer-links{grid-template-columns:repeat(2,minmax(0,1fr))}.site-footer--premium .footer-head{flex-direction:column;align-items:flex-start}}@media(max-width:560px){.site-footer--premium .footer-links{grid-template-columns:1fr}.site-footer--premium .footer-links a{min-height:auto}.site-footer--premium .footer-bottom{flex-direction:column}}
