/* u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550
   HARBORSPECu2122 u2014 SHARED STYLESHEET
   u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550u2550 */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* u2500u2500 VARIABLES u2500u2500 */
:root {
  --navy:       #0d1b2a;
  --deep:       #1a2f45;
  --steel:      #2e4a62;
  --brass:      #c49a2e;
  --brass-light:#e8be5a;
  --fog:        #8fa8be;
  --light:      #d9e6f0;
  --white:      #f2f7fa;
  --charcoal:   #1a1a1a;
  --mid:        #222831;
  --green:      #2e9e5a;
  --red:        #c0392b;

  --font-display: 'Bebas Neue', sans-serif;
  --font-label:   'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
  --transition: 0.2s ease;
  --nav-h: 64px;
}

/* u2500u2500 RESET u2500u2500 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--light);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--brass-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* u2500u2500 NAVIGATION u2500u2500 */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,154,46,0.3);
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo span { color: var(--brass); }
.nav-links {
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--brass);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--brass);
  color: var(--navy) !important;
  font-family: var(--font-label) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 8px 20px !important;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--brass-light) !important; color: var(--navy) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--fog); border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(13,27,42,0.98);
  border-bottom: 2px solid var(--brass);
  flex-direction: column;
  padding: 20px 24px 28px;
  gap: 20px;
  z-index: 999;
}
.nav-drawer a {
  font-family: var(--font-label);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--brass-light); }
.nav-drawer.open { display: flex; }

/* u2500u2500 LAYOUT u2500u2500 */
.page-wrap {
  padding-top: var(--nav-h);
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section-sm { padding: 48px 0; }

/* u2500u2500 SECTION HEADERS u2500u2500 */
.section-head {
  margin-bottom: 48px;
}
.section-eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.section-title span { color: var(--brass); }
.section-sub {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--fog);
  max-width: 580px;
  font-weight: 300;
  line-height: 1.7;
}
.section-divider {
  width: 60px; height: 2px;
  background: var(--brass);
  margin: 16px 0;
}

/* u2500u2500 BUTTONS u2500u2500 */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--brass);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--brass-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,154,46,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--brass-light);
  border: 1px solid var(--brass);
}
.btn-outline:hover {
  background: rgba(196,154,46,0.1);
  color: var(--white);
  border-color: var(--brass-light);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--fog);
  border: 1px solid rgba(143,168,190,0.3);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--fog);
}

/* u2500u2500 PRODUCT CARDS u2500u2500 */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--deep);
  border: 1px solid rgba(46,74,98,0.8);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(196,154,46,0.4);
}
.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 30%;
  background: var(--navy);
  display: block;
}
.product-card-img-placeholder {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--fog);
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-card-body {
  padding: 20px;
  background: var(--navy);
  border-top: 2px solid rgba(196,154,46,0.3);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-name {
  font-family: var(--font-label);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-card-size {
  font-size: 0.78rem;
  color: var(--fog);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.product-card-desc {
  font-size: 0.875rem;
  color: var(--light);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(46,74,98,0.8);
  margin-top: auto;
}
.product-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brass);
  letter-spacing: 0.04em;
}
.product-card-price-note {
  font-size: 0.75rem;
  color: var(--fog);
  margin-top: 1px;
}

/* u2500u2500 SWATCH SECTION u2500u2500 */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}
.swatch-card {
  background: var(--deep);
  border: 2px solid rgba(46,74,98,0.8);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.swatch-card:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}
.swatch-card.selected { border-color: var(--brass-light); }
.swatch-img {
  width: 100%; height: 100px;
  object-fit: cover;
  display: block;
}
.swatch-circle-fallback {
  width: 100%; height: 100px;
  display: flex; align-items: center; justify-content: center;
}
.swatch-info { padding: 10px 10px 12px; }
.swatch-name {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.swatch-tier {
  font-size: 0.72rem;
  color: var(--fog);
  margin-top: 2px;
}
.swatch-tier.premium { color: var(--brass); }

/* u2500u2500 GALLERY u2500u2500 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--deep);
  border: 1px solid var(--steel);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.gallery-item:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}
.gallery-item-img-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--deep);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 220px;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fog);
  background: rgba(13, 27, 42, 0.95);
  border-top: 1px solid var(--steel);
  padding: 9px 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.gallery-item:hover .gallery-item-label { color: var(--brass-light); }
.gallery-item-overlay { display: none; }
.gallery-item-caption { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 860px; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lightbox img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(196,154,46,0.3);
  border-radius: var(--radius);
}
.lightbox-caption {
  font-family: var(--font-label);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
}
.lightbox-close {
  position: absolute; top: -16px; right: -16px;
  width: 36px; height: 36px;
  background: var(--steel);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--brass); }

/* u2500u2500 FORMS u2500u2500 */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid.full { grid-template-columns: 1fr; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
}
.field-group input,
.field-group textarea,
.field-group select {
  background: rgba(13,27,42,0.8);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 14px;
  transition: border-color var(--transition);
  outline: none;
}
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus { border-color: var(--brass); }
.field-group textarea { resize: vertical; min-height: 120px; }

/* u2500u2500 CARDS / PANELS u2500u2500 */
.card {
  background: var(--deep);
  border: 1px solid rgba(46,74,98,0.6);
  border-radius: var(--radius);
  padding: 28px;
}
.card-brass {
  border-color: rgba(196,154,46,0.3);
}

/* u2500u2500 BADGES u2500u2500 */
.badge {
  display: inline-flex;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}
.badge-brass { background: rgba(196,154,46,0.2); color: var(--brass-light); border: 1px solid rgba(196,154,46,0.4); }
.badge-green { background: rgba(46,158,90,0.2); color: #5ec98a; border: 1px solid rgba(46,158,90,0.4); }
.badge-navy  { background: var(--navy); color: var(--fog); border: 1px solid var(--steel); }

/* u2500u2500 POLICY STRIP u2500u2500 */
.policy-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--steel);
  border-radius: var(--radius);
  overflow: hidden;
}
.policy-item {
  background: var(--deep);
  padding: 20px;
  text-align: center;
}
.policy-icon { font-size: 1.4rem; margin-bottom: 8px; }
.policy-label {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.policy-value {
  font-size: 0.8rem;
  color: var(--fog);
  line-height: 1.4;
}

/* u2500u2500 FOOTER u2500u2500 */
.site-footer {
  background: var(--navy);
  border-top: 2px solid var(--brass);
  padding: 48px 0 28px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(46,74,98,0.6);
  margin-bottom: 24px;
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.footer-brand-logo span { color: var(--brass); }
.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--fog);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--fog);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fog);
}
.footer-email a {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--brass-light);
}

/* u2500u2500 HERO BACKGROUND u2500u2500 */
.hero-bg {
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(34,40,49,0.95) 0%, rgba(13,27,42,0.98) 60%, rgba(10,18,28,1) 100%);
  z-index: 0;
}
.hero-bg > * { position: relative; z-index: 1; }

/* u2500u2500 ALERTS u2500u2500 */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.alert-info { background: rgba(46,74,98,0.4); border: 1px solid var(--steel); color: var(--light); }
.alert-success { background: rgba(46,158,90,0.15); border: 1px solid rgba(46,158,90,0.4); color: #7debb0; }
.alert-brass { background: rgba(196,154,46,0.1); border: 1px solid rgba(196,154,46,0.3); color: var(--brass-light); }

/* u2500u2500 UTILITIES u2500u2500 */
.text-brass { color: var(--brass); }
.text-fog   { color: var(--fog); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* u2500u2500 RESPONSIVE u2500u2500 */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .policy-strip { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .policy-strip { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 2rem; }
}
