/* ========================================
   NORDIC TRANSFER - HTML/CSS VERSION
   ======================================== */

:root {
  --bg-primary: #0B0C0F;
  --bg-secondary: #14171C;
  --accent: #B8A47C;
  --text-primary: #F2F2F2;
  --text-secondary: #A6A7AA;
  --border-subtle: rgba(242, 242, 242, 0.08);
  
  --font-display: 'Sora', 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}


        {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
        }
        
        h1 {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
        }
        
        .code-block {
            font-family: 'IBM Plex Mono', monospace;
        }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.grid-layout {
    display: grid;
    /* Auto-fit creates as many columns as fit, min 250px each */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}

/* Grain Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   NAVIGATION
   ======================================== */

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 4vw;
  transition: all 0.4s ease;
  background: transparent;
}

.fixed-nav.visible {
  background: rgba(11, 12, 15, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 4vw;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1800px;
  margin: 0 auto;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.wordmark:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.book-btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--accent);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 164, 124, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(11, 12, 15, 0.98);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.5rem 0;
}

/* ========================================
   HERO SECTION
   ======================================== */

.section-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(11, 12, 15, 0.4) 0%,
    rgba(11, 12, 15, 0.2) 50%,
    rgba(11, 12, 15, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 4vw;
  max-width: 900px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: wordReveal 0.8s ease forwards;
}

.hero-headline .word:nth-child(1) { animation-delay: 0.1s; }
.hero-headline .word:nth-child(2) { animation-delay: 0.15s; }
.hero-headline .word:nth-child(3) { animation-delay: 0.2s; }
.hero-headline .word:nth-child(4) { animation-delay: 0.3s; }
.hero-headline .word:nth-child(5) { animation-delay: 0.35s; }
.hero-headline .word:nth-child(6) { animation-delay: 0.4s; }

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s ease 0.5s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-ui-bottom {
  position: absolute;
  bottom: 4vh;
  left: 4vw;
  right: 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.ui-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-dots {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.scroll-dots span {
  width: 4px;
  height: 4px;
  background: var(--text-secondary);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease infinite;
}

.scroll-dots span:nth-child(2) { animation-delay: 0.2s; }
.scroll-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ========================================
   SPEC CARD SECTION
   ======================================== */

.section-spec {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.spec-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.spec-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.spec-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 15, 0.5);
}

.spec-card {
  position: relative;
  z-index: 2;
  width: min(78vw, 1100px);
  background: rgba(11, 12, 15, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 3rem;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.spec-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.specs-row {
  display: flex;
  gap: 4rem;
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.spec-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-sublabel {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.spec-micro {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================================
   SERVICES SPLIT SECTION
   ======================================== */

.section-services {
  width: 100vw;
  min-height: 100vh;
}

.services-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.service-panel {
  position: relative;
  width: 50%;
  min-height: 100vh;
  overflow: hidden;
  opacity: 0;
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-panel.left {
  transform: translateX(-60px);
}

.service-panel.right {
  transform: translateX(60px);
}

.service-panel.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
  transition: transform 0.8s ease;
}

.service-panel:hover .service-bg img {
  transform: scale(1.05);
}

.service-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(11, 12, 15, 0.9) 0%,
    rgba(11, 12, 15, 0.4) 50%,
    rgba(11, 12, 15, 0.2) 100%
  );
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4vw;
  z-index: 2;
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 360px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

.service-cta:hover {
  gap: 0.75rem;
}

.service-divider {
  width: 2px;
  background: var(--border-subtle);
}

/* ========================================
   FLEET GALLERY SECTION
   ======================================== */

.section-fleet {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fleet-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.fleet-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.fleet-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 15, 0.6);
}

.fleet-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 4vw;
}

.fleet-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

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

.fleet-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
}

.fleet-feature svg {
  color: var(--accent);
}

.fleet-ui-bottom {
  position: absolute;
  bottom: 4vh;
  left: 4vw;
  right: 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

/* ========================================
   BOOKING SECTION
   ======================================== */

.section-booking {
  width: 100vw;
  padding: 10vh 4vw;
  background: var(--bg-secondary);
}

.booking-container {
  max-width: 920px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.booking-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
}

.booking-form {
  background: rgba(11, 12, 15, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  background: rgba(242, 242, 242, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px rgba(184, 164, 124, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A6A7AA' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 164, 124, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.section-contact {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.contact-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 15, 0.5);
}

.contact-card {
  position: relative;
  z-index: 2;
  width: min(72vw, 980px);
  background: rgba(11, 12, 15, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 3rem;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.contact-card-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-left {
  flex: 1;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--accent);
}

.contact-ui-bottom {
  position: absolute;
  bottom: 4vh;
  left: 4vw;
  right: 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.section-footer {
  width: 100vw;
  padding: 6vh 4vw;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
  opacity: 0.6;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .specs-row {
    gap: 2.5rem;
  }
  
  .contact-card-content {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
  }
  
  .service-panel {
    width: 100%;
    min-height: 60vh;
  }
  
  .service-divider {
    width: 100%;
    height: 2px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .spec-card {
    padding: 2rem;
    width: 90vw;
  }
  
  .specs-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-card {
    padding: 2rem;
    width: 90vw;
  }
  
  .hero-ui-bottom,
  .fleet-ui-bottom,
  .contact-ui-bottom {
    display: none;
  }
}

@media (max-width: 480px) {
  .fixed-nav {
    padding: 1rem 4vw;
  }
  
  .hero-headline {
    font-size: 2rem;
  }
  
  .booking-form {
    padding: 1.5rem;
  }
  
  .spec-card,
  .contact-card {
    padding: 1.5rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
