:root {
  --black: #000000;
  --deep-blue: #113B66;
  --primary-blue: #1F5F9E;
  --technical-blue: #2D8FCC;
  --cyan: #64B7D8;
  --steel: #5B696F;
  --dark-gray: #2F3A40;
  --light-gray: #E8EEF2;
  --white: #FFFFFF;

  --font-heading: "Montserrat", Arial, sans-serif;
  --font-body: "Lato", Arial, sans-serif;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --border: rgba(17, 59, 102, 0.12);
  --soft-shadow: 0 14px 36px rgba(17, 59, 102, 0.10);
}

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

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  color: var(--dark-gray);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 36px, 760px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep-blue);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.blue { color: var(--primary-blue); }
.eyebrow.cyan { color: var(--cyan); }

h1,
h2 {
  margin: 0;
  color: var(--deep-blue);
  font-family: var(--font-heading);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(2.45rem, 11.4vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 8.5vw, 3.3rem);
  font-weight: 700;
}

p {
  margin-top: 0;
}

.section {
  padding: 72px 0;
}

/* =========================================================
   HERO — white, premium, uninterrupted first impression
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 48px 0 72px;
  background: var(--white);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 36px, 760px);
  margin-inline: auto;
  text-align: center;
}

.hero-logo {
  width: clamp(155px, 42vw, 225px);
  height: auto;
  margin: 0 auto 32px;
  object-fit: contain;
}

.hero .eyebrow {
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 0.72rem;
}

.hero h1 {
  max-width: 680px;
  margin: 0 auto;
}

.hero-subtitle {
  max-width: 520px;
  margin: 24px auto 0;
  color: var(--dark-gray);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 4.4vw, 1.35rem);
  font-weight: 300;
  line-height: 1.55;
}

.location-line {
  margin: 22px 0 0;
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-line span {
  margin-inline: 5px;
  color: var(--cyan);
}

.hero-accent {
  position: absolute;
  right: -110px;
  bottom: -34px;
  width: 330px;
  max-width: none;
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: var(--steel);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 18px;
  fill: none;
  stroke: var(--technical-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

/* =========================================================
   VIDEO — immediately after hero
   ========================================================= */
.video-section {
  background: linear-gradient(180deg, #fbfdfe 0%, var(--white) 100%);
  border-top: 1px solid rgba(17, 59, 102, 0.06);
}

.section-heading {
  margin-bottom: 24px;
}

.video-section .section-heading h2 {
  font-size: clamp(1.95rem, 7.5vw, 2.8rem);
}

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--deep-blue);
  box-shadow: var(--soft-shadow);
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 59, 102, 0.05), rgba(17, 59, 102, 0.40));
}

.play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  width: 100%;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: center;
  cursor: pointer;
}

.play-circle {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--technical-blue);
  box-shadow: 0 0 0 10px rgba(255,255,255,0.14);
}

.play-circle svg {
  width: 28px;
  fill: var(--white);
}

.play-button strong {
  padding: 8px 12px;
  border-radius: 9px;
  background: rgba(17, 59, 102, 0.76);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.operating-statement {
  margin: 30px 0 22px;
  color: var(--deep-blue);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 5.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.operating-statement p {
  margin: 0;
}

.operating-statement p:last-child {
  color: var(--technical-blue);
}

.micro-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 0 30px;
}

.micro-benefits div {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding-inline: 4px;
  color: var(--deep-blue);
  font-size: 0.72rem;
  line-height: 1.3;
  text-align: center;
}

.micro-benefits svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--primary-blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-blue), var(--technical-blue));
}

.btn-primary svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-button {
  display: flex;
  width: 100%;
}

.portfolio-caption {
  margin: 10px 0 0;
  color: var(--steel);
  font-size: 0.78rem;
  text-align: center;
}

.company-profile-link {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  color: var(--primary-blue);
  border-bottom: 1px solid rgba(31, 95, 158, 0.35);
  font-size: 0.78rem;
}

/* =========================================================
   SHORT RESOURCE BLOCK
   ========================================================= */
.resource-section {
  position: relative;
  overflow: hidden;
  background: var(--light-gray);
}

.resource-section .container {
  position: relative;
  z-index: 2;
}

.resource-section h2 {
  max-width: 620px;
}

.resource-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--dark-gray);
  font-size: 1.02rem;
  line-height: 1.72;
}

.resource-accent {
  position: absolute;
  right: -75px;
  top: 30px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(45, 143, 204, 0.16);
  transform: rotate(45deg);
}

.resource-accent::before,
.resource-accent::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(100, 183, 216, 0.20);
}

.resource-accent::before {
  inset: 32px;
}

.resource-accent::after {
  inset: 68px;
}

/* =========================================================
   DIRECT CONTACT
   ========================================================= */
.contact-section {
  background: var(--white);
}

.contact-intro {
  text-align: center;
}

.contact-intro h2 {
  font-size: clamp(2rem, 8vw, 2.7rem);
}

.contact-intro > p:last-child {
  margin: 8px 0 0;
  color: var(--technical-blue);
  font-family: var(--font-heading);
  font-size: 0.93rem;
  font-weight: 500;
}

.contact-actions {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 30px auto 0;
}

.action-btn {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  min-height: 62px;
  align-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-blue), var(--technical-blue));
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.action-btn::after {
  justify-self: center;
  content: "›";
  color: rgba(255,255,255,0.80);
  font-size: 1.6rem;
  font-weight: 300;
}

.action-icon {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255,255,255,0.20);
}

.action-icon svg {
  width: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-meta {
  display: grid;
  gap: 5px;
  max-width: 520px;
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--light-gray);
  color: var(--steel);
  font-size: 0.88rem;
  text-align: center;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: var(--white);
  background: var(--deep-blue);
}

.final-cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta h2 span {
  color: var(--cyan);
}

.contact-jv {
  min-width: min(100%, 320px);
  margin-top: 30px;
  background: var(--technical-blue);
}

.final-tagline {
  margin: 26px 0 0;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
}

.final-accent {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(100,183,216,0.22);
  transform: rotate(45deg);
}

.final-accent::after {
  position: absolute;
  inset: 54px;
  content: "";
  border: 1px solid rgba(255,255,255,0.11);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  padding: 34px 0 calc(34px + env(safe-area-inset-bottom));
  background: var(--white);
}

.footer-content {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-content > div {
  display: grid;
}

.footer-content strong {
  color: var(--deep-blue);
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.footer-content span {
  color: var(--steel);
  font-size: 0.78rem;
}

.legal-line {
  margin: 12px 0 0;
  color: var(--steel);
  font-size: 0.72rem;
}

/* =========================================================
   VIDEO MODAL
   ========================================================= */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.video-modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 59, 102, 0.90);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
  padding: 10px;
  border-radius: 18px;
  background: var(--white);
}

.modal-dialog video {
  width: 100%;
  border-radius: 12px;
  background: var(--black);
}

.modal-close {
  position: absolute;
  top: -14px;
  right: -8px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary-blue);
  font-size: 1.4rem;
  cursor: pointer;
}

.video-note {
  margin: 8px 4px 0;
  color: var(--steel);
  font-size: 0.72rem;
}

.video-note code {
  color: var(--primary-blue);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 1200;
  max-width: calc(100% - 36px);
  transform: translate(-50%, 130%);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--deep-blue);
  box-shadow: var(--soft-shadow);
  font-size: 0.78rem;
  transition: transform 220ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

/* Subtle reveal only */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .section {
    padding: 92px 0;
  }

  .hero-accent {
    right: -80px;
    width: 410px;
  }

  .video-card {
    border-radius: 24px;
  }

  .micro-benefits {
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 34px;
  }

  .contact-actions,
  .direct-meta {
    max-width: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final hotel video is portrait (1080x1920). Keep it fully visible in the modal. */
.modal-dialog {
  width: min(100%, 520px);
}

.modal-dialog video {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}


/* V3 — optimized vertical video playback */
.modal-dialog {
  width: min(94vw, 520px);
  max-height: 94vh;
}

.modal-dialog video {
  width: 100%;
  max-height: calc(94vh - 20px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}

@media (min-width: 900px) {
  .modal-dialog { width: min(88vw, 480px); }
}

/* =========================================================
   V4 — Brand-only video cover
   Keeps the hotel landing clean before playback.
   ========================================================= */
.video-brand-cover {
  background:
    radial-gradient(circle at 50% 40%, rgba(100, 183, 216, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f4f8fb 58%, #e8eef2 100%);
  border: 1px solid rgba(17, 59, 102, 0.14);
}

.video-brand-cover::before,
.video-brand-cover::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(45, 143, 204, 0.10);
  transform: rotate(45deg);
}

.video-brand-cover::before {
  width: 210px;
  height: 210px;
  right: -90px;
  top: -90px;
}

.video-brand-cover::after {
  width: 170px;
  height: 170px;
  left: -82px;
  bottom: -82px;
}

.video-brand-cover .play-button {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
}

.video-brand-logo {
  width: clamp(125px, 25vw, 205px);
  height: auto;
  object-fit: contain;
  margin-bottom: 2px;
  filter: drop-shadow(0 10px 22px rgba(17, 59, 102, 0.10));
}

.video-brand-cover .play-circle {
  width: 62px;
  height: 62px;
  background: var(--technical-blue);
  box-shadow: 0 0 0 10px rgba(45, 143, 204, 0.11);
}

.video-brand-cover .play-button strong {
  color: var(--white);
  background: var(--deep-blue);
}

.video-brand-cover .play-button:hover .play-circle,
.video-brand-cover .play-button:focus-visible .play-circle {
  transform: scale(1.04);
}
