/* ============================================================
   LANCHA SKIFFS — STYLESHEET
   ============================================================ */

/* Custom Properties — Lancha palette
   Primary:   Charcoal     #514C50  (deep neutral, not cold black)
   Accent:    Terracotta   #E17A4D  (warm, confident — CTA color)
   Support:   Sage Green   #8FA892  (coastal accent)
   Neutral:   Warm Taupe   #C5B8B3  (soft backgrounds, borders)
   Base:      Warm Cream   #F5F1EC
*/
:root {
  --charcoal:      #514C50;
  --charcoal-deep: #3E3A3D;
  --charcoal-soft: #6B666A;

  --terracotta:      #E17A4D;
  --terracotta-deep: #C66A3F;

  --sage:       #8FA892;
  --sage-deep:  #7A9079;

  --taupe:      #C5B8B3;
  --taupe-soft: #D9D0CB;

  --cream:      #F5F1EC;
  --off-white:  #FAF7F3;
  --white:      #ffffff;

  --text-dark:  #3E3A3D;
  --text-mid:   #6B666A;
  --text-light: #A39B96;
  --border:     #E4DAD2;
  --border-soft:#EFE7DF;

  /* Backward-compatible aliases (don't touch HTML references) */
  --navy:       var(--charcoal);
  --navy-deep:  var(--charcoal-deep);
  --sand:       var(--terracotta);
  --seafoam:    var(--sage);
  --gray-blue:  var(--taupe);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --section-pad:    110px;
  --container-max:  1280px;
  --container-pad:  48px;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.3s var(--ease);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── Typography ───────────────────────────────────────────── */
.overline {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 90px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h3, .h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.18;
}

h4, .h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-mid);
}

.body-lg { font-size: 18px; line-height: 1.72; color: var(--text-mid); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-pad) 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 1px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sand);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-sand {
  background: var(--terracotta);
  color: var(--white);
}
.btn-sand:hover {
  background: var(--terracotta-deep);
  color: var(--white);
}

/* New: explicit terracotta variant for accents */
.btn-accent {
  background: var(--terracotta);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--charcoal);
  color: var(--white);
}

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 48px;
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.80; }

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  /* White logo — visible on dark hero */
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, height 0.4s ease;
}

/* Dark logo on white scrolled nav */
.nav.scrolled .nav-logo img {
  filter: brightness(0);
  height: 36px;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links > li > a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--sand);
  transition: width var(--transition);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

.nav.scrolled .nav-links > li > a { color: var(--text-dark); }
.nav-links > li > a:hover,
.nav.scrolled .nav-links > li > a:hover { color: var(--sand); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dropdown-toggle svg {
  width: 10px; height: 6px;
  transition: transform var(--transition);
  stroke: currentColor;
}
.dropdown:hover .dropdown-toggle svg,
.dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  min-width: 176px;
  border-radius: 3px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  overflow: hidden;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--cream); color: var(--navy); }

/* Nav CTA */
.nav-cta { flex-shrink: 0; }
.nav.scrolled .nav-cta {
  color: var(--navy);
  border-color: var(--navy);
}
.nav.scrolled .nav-cta:hover {
  background: var(--navy);
  color: var(--white);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.nav.scrolled .nav-hamburger span { background: var(--navy); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 32px;
  font-weight: 200;
  line-height: 1;
  transition: color var(--transition);
}
.mobile-menu-close:hover { color: var(--white); }

.mobile-nav-links { text-align: center; }

.mobile-nav-links > li { margin: 10px 0; }

.mobile-nav-links > li > a {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav-links > li > a:hover { color: var(--sand); }

.mobile-sub-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 6px 0 14px;
}
.mobile-sub-links li a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.mobile-sub-links li a:hover { color: var(--sand); }

.mobile-menu-cta { margin-top: 32px; }

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 32%;
  transform: scale(1.06);
  transition: transform 9s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(62, 58, 61, 0.55) 0%,
    rgba(62, 58, 61, 0.28) 55%,
    rgba(62, 58, 61, 0.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 860px;
  padding: 0 24px;
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 26px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-logo img {
  height: clamp(32px, 5vw, 48px);
  width: auto;
  max-width: min(90vw, 320px);
  display: block;
  object-fit: contain;
  /* Wordmark reads white on dark hero (works for light or dark source art) */
  filter: brightness(0) invert(1);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.72;
  color: rgba(255,255,255,0.80);
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeIn 1.2s ease 1.4s both;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   BRAND INTRO
   ============================================================ */

.brand-intro {
  padding: 104px 0;
  background: var(--off-white);
  overflow: hidden;
}

.brand-intro-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.brand-intro-copy {
  max-width: 560px;
}

.brand-intro .overline { margin-bottom: 14px; }
.brand-intro h2 { margin-bottom: 22px; }
.brand-intro .body-lg { max-width: 560px; }

.brand-intro-art {
  position: relative;
  min-height: 390px;
}

.brand-intro-art::before,
.brand-intro-art::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand-intro-art::before {
  inset: 38px -28px -30px 54px;
  border: 1px solid rgba(143, 168, 146, 0.55);
  transform: rotate(3deg);
}

.brand-intro-art::after {
  width: 170px;
  height: 170px;
  right: -38px;
  bottom: -44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 39%, rgba(225,122,77,0.24) 40%, rgba(225,122,77,0.24) 41%, transparent 42%),
    repeating-conic-gradient(from -18deg, rgba(62,58,61,0.12) 0deg 8deg, transparent 8deg 18deg);
  opacity: 0.55;
}

.brand-intro-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  border: 10px solid var(--white);
  box-shadow: 0 28px 70px rgba(62, 58, 61, 0.18);
  transform: rotate(-2deg);
}

.brand-intro-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,58,61,0.08), transparent 42%, rgba(225,122,77,0.14));
}

.brand-intro-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.brand-intro-chip {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: -18px;
  padding: 12px 16px;
  background: var(--charcoal-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(62, 58, 61, 0.22);
}

.brand-intro-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  max-width: none;
  padding: 14px 18px;
  background: rgba(250, 247, 243, 0.92);
  color: var(--charcoal-deep);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.22;
  white-space: nowrap;
  box-shadow: 0 16px 38px rgba(62, 58, 61, 0.14);
  backdrop-filter: blur(8px);
}

/* ============================================================
   MODEL OVERVIEW (Lancha 18)
   ============================================================ */

.model-overview { padding: var(--section-pad) 0; }

.model-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.model-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.model-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.model-img-wrap:hover img { transform: scale(1.04); }

.model-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--charcoal-deep);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 1;
}

/* ---- Sage variant (hull-on-sage treatment) ---- */
.model-overview--sage {
  position: relative;
  overflow: hidden;
  background: var(--sage);
  color: var(--charcoal-deep);
}

/* Content above topo layer */
.model-overview--sage > .container {
  position: relative;
  z-index: 1;
}

/* Topographic contour texture — ultra-subtle, blended into sage */
.model-overview--sage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/topo.png");
  background-repeat: repeat;
  background-size: 1100px 1100px;
  background-position: 18% 35%;
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Second pass: offset tile for organic depth without obvious tiling */
.model-overview--sage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/topo.png");
  background-repeat: repeat;
  background-size: 780px 780px;
  background-position: 55% 8%;
  opacity: 0.03;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Soft decorative band so the sage section stacks cleanly
   against the cream + navy sections around it */
.model-overview--sage + .build-options,
.brand-intro + .model-overview--sage {
  border-top: none;
}

.model-overview--sage .overline {
  color: var(--charcoal-deep);
  opacity: 0.72;
}

.model-overview--sage .model-content h2 {
  color: var(--charcoal-deep);
}

.model-overview--sage .model-content .body-lg,
.model-overview--sage .model-content p {
  color: rgba(62, 58, 61, 0.82);
}

/* Specs grid on sage */
.model-overview--sage .specs-grid {
  border-color: rgba(62, 58, 61, 0.22);
  background: rgba(255, 255, 255, 0.10);
}
.model-overview--sage .spec-item {
  border-color: rgba(62, 58, 61, 0.22);
}
.model-overview--sage .spec-label {
  color: rgba(62, 58, 61, 0.62);
}
.model-overview--sage .spec-value {
  color: var(--charcoal-deep);
}

/* CTA on sage — terracotta pops nicely */
.model-overview--sage .btn-primary {
  background: var(--charcoal-deep);
  color: var(--white);
}
.model-overview--sage .btn-primary:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* Top-down hull render — sage-matched PNG blends seamlessly into the sage section */
.model-img-wrap--blend {
  background: transparent;
  border-radius: 2px;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 620px;
}
.model-img-wrap--blend img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
}
.model-img-wrap--blend:hover img {
  transform: scale(1.03);
}

.model-content .overline { margin-bottom: 12px; }
.model-content h2 { margin-bottom: 18px; }
.model-content > .body-lg { margin-bottom: 40px; }

/* Specs */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.spec-item {
  padding: 17px 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.spec-item:nth-child(even) { border-right: none; }
.spec-item:nth-last-child(-n+2) { border-bottom: none; }

.spec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.spec-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

/* ============================================================
   BUILD OPTIONS
   ============================================================ */

.build-options {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 68px;
}
.section-header .overline { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; }

.build-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.build-card {
  background: var(--white);
  padding: 52px 38px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}
.build-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
  z-index: 1;
}

.build-card.featured {
  background: var(--charcoal-deep);
  position: relative;
}
.build-card.featured::before {
  content: 'Flagship';
  position: absolute;
  top: 20px; right: 20px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 1px;
}

.card-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
}

.build-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.build-card.featured h3 { color: var(--white); }

.card-price {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--charcoal-deep);
  margin-bottom: 6px;
  line-height: 1.1;
}
.build-card.featured .card-price {
  color: var(--terracotta);
}

.card-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.card-divider {
  width: 36px; height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}
.build-card.featured .card-divider { background: rgba(255,255,255,0.18); }

.card-desc {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.build-card.featured .card-desc { color: rgba(255,255,255,0.68); }

.card-inclusions {
  flex: 1;
  margin-bottom: 36px;
}
.card-inclusions li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.build-card.featured .card-inclusions li {
  color: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.10);
}
.card-inclusions li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */

.gallery-preview { padding: var(--section-pad) 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  margin-bottom: 52px;
}

.gallery-item { overflow: hidden; position: relative; }
.gallery-item:nth-child(1) { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }

.gallery-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  display: block;
}
.gallery-item:nth-child(1) img,
.gallery-item:nth-child(2) img { height: 460px; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 34, 0);
  transition: background 0.4s ease;
}
.gallery-item:hover .gallery-overlay { background: rgba(62, 58, 61, 0.18); }

.gallery-cta { text-align: center; }

/* ============================================================
   WHY LANCHA
   ============================================================ */

.why-lancha {
  background: var(--charcoal-deep);
  padding: var(--section-pad) 0;
}
.why-lancha .section-header h2 { color: var(--white); }
.why-lancha .section-header p  { color: rgba(255,255,255,0.55); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px;
}

.why-item { text-align: center; }

.why-icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
}
.why-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(225, 122, 77, 0.32);
  border-radius: 50%;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.why-icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: rgba(225, 122, 77, 0.06);
  border-radius: 50%;
  transition: background 0.4s var(--ease);
}
.why-icon svg {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
}
.why-item:hover .why-icon { transform: translateY(-3px); }
.why-item:hover .why-icon::before {
  border-color: var(--sand);
  transform: scale(1.05);
}
.why-item:hover .why-icon::after { background: rgba(225, 122, 77, 0.12); }

.why-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.why-item p {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */

.about-preview { padding: var(--section-pad) 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-img-wrap { overflow: hidden; border-radius: 2px; }
.about-img-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-content .overline { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 22px; }
.about-content p + p { margin-top: 14px; }
.about-content .btn { margin-top: 32px; }

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

.contact-section {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner .overline { margin-bottom: 12px; }
.contact-inner h2 { margin-bottom: 12px; }
.contact-inner > p { margin-bottom: 52px; }

.contact-form {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  /* 16px prevents iOS Safari auto-zoom on focus */
  font-size: 16px;
  color: var(--text-dark);
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--charcoal);
  box-shadow: 0 0 0 3px rgba(225, 122, 77, 0.14);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 128px; }

.form-submit {
  grid-column: span 2;
  text-align: center;
  margin-top: 8px;
}

/* Field error state */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.10);
}
.field-error {
  font-size: 12px;
  color: #C0392B;
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* Submit states */
.btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  color: var(--white);
  animation: btnSpin 0.7s linear infinite;
}
.btn-outline.is-loading::after,
.btn-outline-white.is-loading::after { color: var(--charcoal); }

.btn.is-sent {
  background: var(--sage-deep);
  color: var(--white);
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Form status panel */
.form-status {
  grid-column: span 2;
  margin-top: 18px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.55;
  border-radius: 2px;
  border: 1px solid transparent;
  display: none;
}
.form-status[data-type="sending"] {
  display: block;
  background: rgba(143, 168, 146, 0.12);
  border-color: rgba(143, 168, 146, 0.35);
  color: var(--charcoal-deep);
}
.form-status[data-type="success"] {
  display: block;
  background: rgba(143, 168, 146, 0.18);
  border-color: rgba(143, 168, 146, 0.45);
  color: var(--charcoal-deep);
}
.form-status[data-type="error"] {
  display: block;
  background: rgba(225, 122, 77, 0.10);
  border-color: rgba(225, 122, 77, 0.45);
  color: #8C3F1A;
}

@media (max-width: 640px) {
  .form-status { grid-column: span 1; }
}

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

.footer {
  background: var(--charcoal-deep);
  color: rgba(255,255,255,0.6);
  padding: 68px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
  /* Keep white in dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.45);
  margin-bottom: 26px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--sand);
  background: rgba(196,160,106,0.1);
}
.footer-social svg { width: 15px; height: 15px; color: rgba(255,255,255,0.6); }
.footer-social a:hover svg { color: var(--sand); }

.footer-col h5 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--sand); }

.footer-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
}
.footer-col address a {
  color: rgba(255,255,255,0.48);
  transition: color var(--transition);
}
.footer-col address a:hover { color: var(--sand); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.30);
}

/* ============================================================
   STICKY CTA
   ============================================================ */

.sticky-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================================
   PAGE INTERIORS (Subpages)
   ============================================================ */

.page-hero {
  padding-top: 150px;
  padding-bottom: 90px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(62, 58, 61, 0.80) 40%, rgba(62, 58, 61, 0.40) 100%);
}

.page-hero.has-image {
  padding-top: 200px;
  padding-bottom: 120px;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero.has-image .page-hero-content * { color: var(--white); }
.page-hero.has-image .overline { color: var(--sand); }
.page-hero.has-image h1 { color: var(--white); }
.page-hero.has-image p { color: rgba(255,255,255,0.78); }

.page-hero .overline { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 18px; max-width: 600px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--sand); }
.breadcrumb span { color: var(--sand); }

/* Package Content */
.package-body { padding: var(--section-pad) 0; }

.package-lead {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
.package-lead h2 { margin-bottom: 18px; }
.package-lead p { font-size: 18px; }

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.package-img-wrap { overflow: hidden; border-radius: 2px; }
.package-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.package-img-wrap:hover img { transform: scale(1.04); }

.package-detail .overline { margin-bottom: 12px; }
.package-detail h3 { margin-bottom: 16px; }
.package-detail p { margin-bottom: 20px; }

.inclusions-list {
  margin: 24px 0 32px;
}
.inclusions-list h5 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.inclusions-list ul { border: none; }
.inclusions-list ul li {
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.inclusions-list ul li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

.package-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Who It's For */
.who-section {
  background: var(--cream);
  padding: 80px 0;
}
.who-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.who-inner h3 { margin-bottom: 16px; }

/* Package Nav */
.package-nav-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.package-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.package-nav-item {
  padding: 20px 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-right: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.package-nav-item:first-child { border-left: 1px solid var(--border); }
.package-nav-item:hover,
.package-nav-item.active {
  background: var(--navy);
  color: var(--white);
}

/* Full-width image bands */
.full-band {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.full-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62, 58, 61, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-band-content {
  text-align: center;
  color: var(--white);
  max-width: 640px;
  padding: 0 24px;
}
.full-band-content h2 { color: var(--white); margin-bottom: 20px; }
.full-band-content p { color: rgba(255,255,255,0.78); margin-bottom: 32px; }

/* Gallery Page */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-page-item { overflow: hidden; aspect-ratio: 4/3; position: relative; }
.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-page-item:hover img { transform: scale(1.06); }
.gallery-page-item.large { grid-column: span 2; aspect-ratio: 16/9; }

/* About Page */
.about-page-hero {
  position: relative;
  padding-top: 140px;
  background:
    linear-gradient(to right, rgba(62, 58, 61, 0.82) 0%, rgba(62, 58, 61, 0.50) 58%, rgba(62, 58, 61, 0.30) 100%),
    url("../assets/hero-home.png") center / cover no-repeat;
  overflow: hidden;
}

.about-page-hero .about-hero-text {
  position: relative;
  z-index: 1;
}

.about-page-hero .about-hero-text h1 {
  color: var(--white);
}

.about-page-hero .about-hero-text p {
  color: rgba(255,255,255,0.78);
}

.about-hero-text {
  max-width: 780px;
  padding: var(--section-pad) 0;
}
.about-hero-text h1 { margin-bottom: 24px; }
.about-hero-text p { font-size: 20px; line-height: 1.72; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: var(--section-pad) 0;
}
.about-story-text .overline { margin-bottom: 12px; }
.about-story-text h2 { margin-bottom: 22px; }
.about-story-text p + p { margin-top: 16px; }

.values-strip {
  background: var(--cream);
  padding: 80px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.value-item { padding: 40px 32px; background: var(--white); }
.value-item h4 { margin-bottom: 12px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.75; }
}

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

@media (max-width: 1100px) {
  :root { --container-pad: 36px; }

  .model-overview-grid { gap: 52px; }
  .about-grid { gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 44px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 18px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav-logo img { height: 38px; }
  .nav.scrolled .nav-logo img { height: 32px; }

  .brand-intro {
    padding: 82px 0;
  }
  .brand-intro-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .brand-intro-copy {
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
  }
  .brand-intro .body-lg {
    margin: 0 auto;
  }
  .brand-intro-art {
    width: min(620px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .model-overview-grid,
  .about-grid,
  .package-grid,
  .about-story { grid-template-columns: 1fr; gap: 44px; }

  .model-img-wrap img,
  .about-img-wrap img { height: 420px; }

  .model-img-wrap--blend { height: 440px; }
  .model-img-wrap--blend img { height: 100%; width: auto; }

  .build-cards { grid-template-columns: 1fr; gap: 3px; }
  .build-card { padding: 40px 28px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item { grid-column: span 1 !important; }
  .gallery-item img { height: 260px !important; }
  .gallery-item:nth-child(1) img,
  .gallery-item:nth-child(2) img { height: 300px !important; }

  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-item.large { grid-column: span 2; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .package-nav-item { padding: 16px 20px; }

  .full-band { height: 360px; }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 60px;
    --container-pad: 20px;
  }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .contact-form { grid-template-columns: 1fr; }
  .form-group.full,
  .form-submit { grid-column: span 1; }

  .specs-grid { grid-template-columns: 1fr; }
  .spec-item { border-right: none; border-bottom: 1px solid var(--border) !important; }
  .spec-item:last-child { border-bottom: none !important; }

  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-page-item.large { grid-column: span 1; aspect-ratio: 4/3; }

  .values-grid { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; align-items: center; }

  .package-nav-inner { flex-direction: column; }
  .package-nav-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; text-align: center; }
  .package-nav-item:last-child { border-bottom: none; }

  .mobile-sub-links { gap: 16px; flex-wrap: wrap; justify-content: center; }

  .why-grid { grid-template-columns: 1fr; gap: 36px; }

  .sticky-cta { bottom: 16px; right: 16px; padding: 13px 22px; font-size: 11px; }

  .brand-intro-art::before {
    inset: 28px -12px -20px 28px;
  }
  .brand-intro-art::after {
    width: 120px;
    height: 120px;
    right: -24px;
    bottom: -28px;
  }
  .brand-intro-frame {
    border-width: 7px;
    transform: rotate(-1deg);
  }
  .brand-intro-chip {
    top: 18px;
    left: -8px;
    font-size: 10px;
  }
  .brand-intro-caption {
    right: 14px;
    bottom: 14px;
    max-width: 190px;
    font-size: 16px;
  }

  .model-overview--sage::before {
    background-size: 640px 640px;
    opacity: 0.05;
  }
  .model-overview--sage::after {
    background-size: 480px 480px;
    opacity: 0.025;
  }

  .hero { min-height: 560px; }
  .hero h1 { line-height: 1.06; }
  .hero-content { padding: 0 20px; }
  .hero-sub { margin-bottom: 34px; }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }

  .page-hero.has-image { padding-top: 150px; padding-bottom: 80px; }
  .page-hero h1 { font-size: clamp(32px, 9vw, 46px); }

  .build-card { padding: 36px 24px; }
  .build-card.featured::before { top: 16px; right: 16px; }

  .contact-form-card h3 { font-size: 20px; }

  /* Let form submit button stretch on tiny screens */
  .form-submit .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   ACCESSIBILITY & MOTION PREFERENCES
   ============================================================ */

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  background: var(--charcoal-deep);
  color: var(--white);
  padding: 10px 16px;
  z-index: 2000;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; }

/* Keyboard-only focus rings */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}
.nav-logo:focus-visible,
.footer-logo:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

/* Touch targets — ensure clickable items are ≥44px on small screens */
@media (max-width: 900px) {
  .nav-links > li > a,
  .mobile-nav-links > li > a,
  .nav-hamburger,
  .mobile-menu-close { min-height: 44px; }
  .nav-hamburger {
    width: 44px; height: 44px;
    justify-content: center;
  }
  .btn { min-height: 48px; }
  .footer-col ul li a { display: inline-block; padding: 4px 0; }
}

/* Mobile dropdown — tap to expand Lancha 18 submenu */
@media (hover: none) and (pointer: coarse) {
  .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* Reduced motion — honor user preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg { transform: none !important; }
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Print */
@media print {
  .nav, .sticky-cta, .hero-scroll, .footer-social,
  .mobile-menu, .nav-hamburger { display: none !important; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-bg, .hero-overlay { display: none; }
  .hero-content * { color: #000 !important; }
}
