/* ============================================================
   SHIOWAYS — Main Stylesheet
   Palette: Black #000 | Yellow #ffcc08 | White #fff
   Fonts: Syne (headings) · Cormorant Garamond (accent) · DM Sans (body)
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
#page-transition {
  position: fixed;
  inset: 0;
  background: #ffcc08;
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 80px;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  from { opacity: 0.4; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.05); }
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: #ffcc08;
  animation: loaderSlide 1s ease forwards;
}

@keyframes loaderSlide {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #ffcc08; border-radius: 2px; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.font-syne        { font-family: 'Syne', sans-serif; }
.font-cormorant   { font-family: 'Cormorant Garamond', serif; }

.text-yellow  { color: #ffcc08; }
.text-white   { color: #fff; }
.text-black   { color: #000; }
.text-muted   { color: #888; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffcc08;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: #ffcc08;
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn:active { transform: scale(0.97); }

/* Primary: yellow fill */
.btn-primary {
  background: #ffcc08;
  color: #000;
  border-color: #ffcc08;
}
.btn-primary::before { background: #000; }
.btn-primary:hover { color: #ffcc08; border-color: #ffcc08; }

/* Outline: white border */
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline::before { background: #fff; }
.btn-outline:hover { color: #000; }

/* Outline dark: black border on light bg */
.btn-outline-dark {
  background: transparent;
  color: #000;
  border-color: #000;
}
.btn-outline-dark::before { background: #000; }
.btn-outline-dark:hover { color: #ffcc08; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffcc08;
  transition: gap 0.25s ease;
}

.btn-arrow:hover { gap: 0.8rem; }
.btn-arrow svg { transition: transform 0.25s ease; }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  padding: 0.8rem 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo img {
  height: 38px;
  width: auto;
  transition: height 0.4s ease;
}

#navbar.scrolled .nav-logo img { height: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffcc08;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: #ffcc08; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}

.hamburger span:nth-child(2) { width: 65%; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 100%; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu a {
  font-family: 'arial', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active { color: #ffcc08; }

.mobile-menu-footer {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu-footer span {
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.1em;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: #000;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000 0%, #111 50%, #0a0a0a 100%);
  z-index: 0;
}

/* Grid texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,204,8,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,204,8,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  right: 25%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #ffcc08 30%, #ffcc08 70%, transparent);
  opacity: 0.08;
  z-index: 1;
}

.hero-big-text {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: 'Syne', sans-serif;
  font-size: clamp(6rem, 18vw, 22rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  letter-spacing: -0.02em;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  padding-bottom: 7rem;
  padding-top: 10rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-eyebrow.visible { opacity: 1; transform: translateY(0); }

.hero-eyebrow-line {
  width: 3rem;
  height: 2px;
  background: #ffcc08;
}

.hero-eyebrow span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffcc08;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 9vw, 9rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline .line span {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-headline .line:nth-child(1) span { transition-delay: 0.3s; }
.hero-headline .line:nth-child(2) span { transition-delay: 0.45s; }
.hero-headline .line:nth-child(3) span { transition-delay: 0.6s; }

.hero-headline.visible .line span { opacity: 1; transform: translateY(0); }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-desc {
  max-width: 420px;
  font-size: 1rem;
  color: #888;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.75s, transform 0.8s ease 0.75s;
}

.hero-desc.visible { opacity: 1; transform: translateY(0); }

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}

.hero-ctas.visible { opacity: 1; transform: translateY(0); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #ffcc08, transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: #ffcc08;
}

/* ============================================================
   SCROLL ANIMATION CLASSES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   SERVICES PREVIEW — HOME
   ============================================================ */
.services-preview {
  background: #000;
  border-top: 1px solid #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: #111;
  border: 1px solid #111;
}

.service-card {
  background: #000;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #ffcc08;
  transition: width 0.4s ease;
}

.service-card:hover { background: #0a0a0a; }
.service-card:hover::before { width: 100%; }

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: #ffcc08;
}

.service-card-icon svg { width: 100%; height: 100%; }

.service-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-card-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.1em;
}

/* ============================================================
   ABOUT PREVIEW — HOME
   ============================================================ */
.about-preview {
  background: #050505;
  overflow: hidden;
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}

.about-visual-box {
  position: absolute;
  inset: 0;
  background: #111;
  border: 1px solid #1a1a1a;
  overflow: hidden;
}

.about-visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffcc08 0%, transparent 50%);
  opacity: 0.06;
}

.about-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,204,8,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,204,8,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-year-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: #ffcc08;
  color: #000;
  padding: 1.5rem;
  text-align: center;
}

.about-year-badge strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-year-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-preview-content .section-title {
  margin-bottom: 1.5rem;
}

.about-preview-text {
  font-size: 1rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #1a1a1a;
}

.stat-item strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffcc08;
  line-height: 1;
}

.stat-item span {
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: #000;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}

.why-item {
  position: relative;
  padding-left: 1.5rem;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: #ffcc08;
  transition: height 0.6s ease;
}

.why-item.visible::before { height: 100%; }

.why-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: -1rem;
}

.why-item-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.why-item-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-section {
  background: #ffcc08;
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeRoll 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeRoll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: #ffcc08;
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'SHIP';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Syne', sans-serif;
  font-size: clamp(8rem, 25vw, 22rem);
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-section .section-label { color: #000; }
.cta-section .section-label::before { background: #000; }

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 6vw, 5.5rem);
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 2rem;
}

.cta-subtitle {
  font-size: 1rem;
  color: #333;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #000;
  border-top: 1px solid #111;
  padding: 5rem 0 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #111;
  margin-bottom: 2rem;
}

.footer-brand-logo { margin-bottom: 1.5rem; }
.footer-brand-logo img { height: 36px; }

.footer-tagline {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.footer-social a:hover {
  background: #ffcc08;
  border-color: #ffcc08;
}

.footer-social a svg { width: 16px; height: 16px; color: #fff; }
.footer-social a:hover svg { color: #000; }

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #555;
  transition: color 0.25s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffcc08;
  transition: width 0.3s ease;
}

.footer-links a:hover { color: #ffcc08; }
.footer-links a:hover::after { width: 100%; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg { width: 14px; height: 14px; color: #ffcc08; flex-shrink: 0; margin-top: 3px; }

.footer-contact-item span {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: #333;
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.7rem;
  color: #333;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer-legal a:hover { color: #ffcc08; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  padding-top: 12rem;
  position: relative;
  background: #000;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,204,8,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,204,8,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-hero-eyebrow-line { width: 3rem; height: 2px; background: #ffcc08; }

.page-hero-eyebrow span {
  font-size: 0.7rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffcc08;
}

.page-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 7vw, 7rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

.page-hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: #ffcc08;
}

.page-hero-bg-text {
  position: absolute;
  right: -2rem;
  bottom: -1rem;
  font-family: 'Syne', sans-serif;
  font-size: clamp(5rem, 15vw, 15rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  background: #000;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.story-block {
  font-size: 1rem;
  color: #888;
  line-height: 1.85;
}

.story-block p { margin-bottom: 1.5rem; }
.story-block p:last-child { margin-bottom: 0; }

.story-block .highlight {
  color: #fff;
  font-weight: 500;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #ffcc08, transparent);
  margin: 4rem 0;
  opacity: 0.3;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0.5rem;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #ffcc08, #1a1a1a);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #111;
}

.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  top: 0.4rem;
  left: -2.5rem;
  width: 12px;
  height: 12px;
  background: #ffcc08;
  border-radius: 50%;
}

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: -0.5rem;
}

.timeline-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.timeline-desc { font-size: 0.875rem; color: #666; line-height: 1.7; }

/* Mission / Vision */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #111;
  border: 1px solid #111;
  margin-top: 4rem;
}

.mission-card {
  background: #000;
  padding: 3rem;
  transition: background 0.3s ease;
}

.mission-card:hover { background: #060606; }

.mission-card-icon {
  width: 40px;
  height: 40px;
  color: #ffcc08;
  margin-bottom: 1.5rem;
}

.mission-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.5rem;
}

.mission-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.mission-card-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.75;
}

/* Team / Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.value-item {
  background: #050505;
  border: 1px solid #111;
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.value-item:hover { border-color: #ffcc08; transform: translateY(-4px); }

.value-icon {
  width: 36px;
  height: 36px;
  color: #ffcc08;
  margin-bottom: 1rem;
}

.value-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.value-desc { font-size: 0.82rem; color: #555; line-height: 1.65; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page {
  background: #000;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: #111;
  border: 1px solid #111;
}

.service-full-card {
  background: #000;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
  cursor: default;
}

.service-full-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: #ffcc08;
  transition: height 0.5s ease;
}

.service-full-card:hover { background: #060606; }
.service-full-card:hover::after { height: 100%; }

.service-full-icon {
  width: 52px;
  height: 52px;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  color: #ffcc08;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-full-card:hover .service-full-icon {
  background: #ffcc08;
  border-color: #ffcc08;
  color: #000;
}

.service-full-icon svg { width: 24px; height: 24px; }

.service-full-num {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #0d0d0d;
  line-height: 1;
  transition: color 0.3s ease;
}

.service-full-card:hover .service-full-num { color: #111; }

.service-full-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.service-full-desc {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  border: 1px solid #1a1a1a;
  padding: 0.25rem 0.6rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.service-full-card:hover .service-tag { color: #ffcc08; border-color: #ffcc08; }

/* Process section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #ffcc08, transparent);
  opacity: 0.15;
}

.process-step {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 48px;
  height: 48px;
  background: #000;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.process-step:hover .process-step-num {
  background: #ffcc08;
  border-color: #ffcc08;
  color: #000;
}

.process-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.process-step-desc { font-size: 0.8rem; color: #555; line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { background: #000; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { padding-top: 1rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #111;
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffcc08;
}

.contact-info-icon svg { width: 18px; height: 18px; }

.contact-info-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0.4rem;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

.contact-info-value a { transition: color 0.25s ease; }
.contact-info-value a:hover { color: #ffcc08; }

.contact-map-wrap {
  background: #050505;
  border: 1px solid #111;
  height: 100%;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #050505;
  background-image:
    linear-gradient(rgba(255,204,8,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,204,8,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  width: 50px;
  height: 50px;
  background: #ffcc08;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-bottom: 1.5rem;
  position: relative;
  animation: mapBounce 2s ease-in-out infinite;
}

.map-pin::after {
  content: '';
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes mapBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50%       { transform: rotate(-45deg) translateY(-8px); }
}

.map-addr {
  text-align: center;
}

.map-addr strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.map-addr span { font-size: 0.85rem; color: #555; }

.map-coords {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  color: #222;
  letter-spacing: 0.1em;
  font-family: 'DM Sans', sans-serif;
}

/* Contact social strip */
.contact-social-strip {
  background: #050505;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  padding: 4rem 0;
}

.contact-social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-social-text strong {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.3rem;
}

.contact-social-text span { font-size: 0.9rem; color: #555; }

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid #ffcc08;
  color: #ffcc08;
  padding: 1rem 2rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-social-link svg { width: 20px; height: 20px; }
.contact-social-link:hover { background: #ffcc08; color: #000; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-preview-inner { gap: 3rem; }
}

@media (max-width: 900px) {
  .about-preview-inner { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 3 / 2; max-width: 500px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 380px; }
  .services-full-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   768px — Switch headings from fixed clamp minimums to pure vw
   scaling so they shrink with the viewport instead of overflowing.
   The old clamp minimums (3–3.5rem) were larger than the vw value
   at mobile widths, so the minimum always "won" → oversized text.
---------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }

  .section { padding: 5rem 0; }
  .hero-content { padding-bottom: 6rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-stats { gap: 1.5rem; }
  .contact-social-inner { flex-direction: column; align-items: flex-start; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Hero headline — vw-first so it scales with the screen */
  .hero-headline {
    font-size: clamp(1.6rem, 8.5vw, 3.2rem);
    letter-spacing: -0.03em;
  }

  /* Inner page big titles */
  .page-hero-title {
    font-size: clamp(1.5rem, 7vw, 3rem);
    letter-spacing: -0.03em;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Section headings */
  .section-title {
    font-size: clamp(1.4rem, 5.5vw, 2.5rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* CTA block title */
  .cta-title {
    font-size: clamp(1.5rem, 6.5vw, 2.5rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Social strip heading */
  .contact-social-text strong {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }
}

/* ----------------------------------------------------------------
   480px — Further tighten for very small phones (320–480px range)
---------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(1.4rem, 8vw, 2.2rem);
    letter-spacing: -0.03em;
  }

  .page-hero-title {
    font-size: clamp(1.3rem, 6.5vw, 2rem);
    letter-spacing: -0.03em;
  }

  .section-title {
    font-size: clamp(1.2rem, 5.2vw, 1.8rem);
  }

  .cta-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  /* Cormorant Garamond accents → Syne italic; serif is extra-wide at tiny sizes */
  .section-title em,
  .page-hero-title em,
  .cta-title em,
  .hero-headline em {
    font-family: 'Syne', sans-serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-year-badge { right: 0; }
  .services-full-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PORT SCENE — HOME HERO BACKGROUND
   ============================================================ */
.hero-port-scene {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Ocean surface */
.port-water {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  opacity: 0.18;
}

/* Wave paths animated */
.port-wave-1 { animation: portWaveShift 14s linear infinite; }
.port-wave-2 { animation: portWaveShift 20s linear infinite reverse; opacity: 0.08; }

@keyframes portWaveShift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Container ship */
.port-ship {
  position: absolute;
  bottom: 52px;
  left: 0;
  opacity: 0.09;
  animation: portShipSail 100s linear infinite;
  transform: translateX(110vw);
}

@keyframes portShipSail {
  0%   { transform: translateX(110vw); }
  100% { transform: translateX(-620px); }
}

/* Port crane — fixed right side */
.port-crane {
  position: absolute;
  bottom: 52px;
  right: 6%;
  opacity: 0.07;
}

/* Crane arm swing */
.port-crane-cable {
  transform-origin: 50% 0;
  animation: craneCableSwing 6s ease-in-out infinite;
}

@keyframes craneCableSwing {
  0%, 100% { transform: rotate(-4deg); }
  50%       { transform: rotate(4deg); }
}

/* Second smaller ship in distance */
.port-ship-small {
  position: absolute;
  bottom: 56px;
  left: 0;
  opacity: 0.05;
  animation: portShipSmall 140s linear infinite;
  transform: translateX(130vw);
}

@keyframes portShipSmall {
  0%   { transform: translateX(130vw); }
  100% { transform: translateX(-300px); }
}

/* Harbour lights — blinking dots */
.port-light {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffcc08;
  border-radius: 50%;
  animation: portLightBlink 2.5s ease-in-out infinite;
}

.port-light:nth-child(1) { bottom: 120px; right: 8%;   animation-delay: 0s;    opacity: 0.35; }
.port-light:nth-child(2) { bottom: 150px; right: 8.6%; animation-delay: 0.4s;  opacity: 0.25; }
.port-light:nth-child(3) { bottom: 100px; right: 7.4%; animation-delay: 0.8s;  opacity: 0.30; }
.port-light:nth-child(4) { bottom: 90px;  right: 12%;  animation-delay: 1.2s;  opacity: 0.20; }
.port-light:nth-child(5) { bottom: 110px; right: 11%;  animation-delay: 1.8s;  opacity: 0.28; }

@keyframes portLightBlink {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%       { opacity: 0.08; transform: scale(0.6); }
}

/* Horizon line */
.port-horizon {
  position: absolute;
  bottom: 52px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,204,8,0.08) 20%, rgba(255,204,8,0.08) 80%, transparent);
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   UTILITY
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
