/* =============================================================
   GulfSouth Outdoor Living — shared stylesheet
   Typography: Inter Tight (display/body) + Space Mono (labels)
   Brand: black & white, Swiss-minimalist
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --ink: #0A0A0A;
  --paper: #F4F1EC;
  --hair: #0A0A0A;
  --muted: rgba(10,10,10,0.55);
  --muted-inv: rgba(244,241,236,0.55);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.mono {
  font-family: "Space Mono", "Courier New", monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 24px;
  text-align: center;
  letter-spacing: 0.2em;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  font-size: 10px;
}
.marquee .sep { opacity: 0.4; margin: 0 12px; }
.marquee a { color: var(--paper); transition: opacity 0.2s; }
.marquee a:hover { opacity: 0.7; }

/* ---------- Top nav ---------- */
.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  padding: 22px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top.scrolled {
  border-bottom-color: var(--ink);
}
.logo {
  display: block;
  line-height: 0;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.logo:hover img { opacity: 0.7; }
.nav-links {
  display: flex;
  gap: 32px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-link { position: relative; padding: 4px 0; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 6% 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero-meta {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero-meta .sep { opacity: 0.3; }

h1.hero-h {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 500;
  margin: 0;
}
h1.hero-h .light {
  font-weight: 400;
  opacity: 0.55;
}
h1.hero-h .bold {
  font-weight: 700;
}

.rule {
  height: 1px;
  background: var(--ink);
  margin: 44px 0 30px;
  transform-origin: left;
  animation: drawLine 1.1s cubic-bezier(.16,1,.3,1) both;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.55;
  max-width: 480px;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.cta-row { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 17px 34px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn.solid { background: var(--ink); color: var(--paper); }
.btn.solid:hover { background: var(--paper); color: var(--ink); }

.btn-inv {
  display: inline-block;
  padding: 17px 34px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--paper);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-inv:hover { background: var(--paper); color: var(--ink); }

/* Hero artwork */
.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0A0A0A;
}
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.hero-art .label {
  position: absolute;
  bottom: 20px;
  left: 22px;
  color: var(--paper);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 2;
}

/* ---------- Values strip ---------- */
.values {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 28px 6%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.values div { text-align: center; }

/* ---------- Categories ---------- */
.section-head {
  padding: 110px 6% 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.kicker {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
h2.section-h {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin: 0;
}
h2.section-h .light {
  font-weight: 400;
  opacity: 0.55;
}

.section-lede { font-size: 16px; line-height: 1.65; max-width: 440px; margin: 0; }

.cat-list { border-top: 1px solid var(--ink); }
.cat-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr 40px;
  align-items: center;
  padding: 34px 6%;
  border-bottom: 1px solid var(--ink);
  gap: 32px;
  transition: background 0.35s ease, color 0.35s ease, padding 0.35s ease;
  color: var(--ink);
}
.cat-row:hover {
  background: var(--ink);
  color: var(--paper);
}
.cat-row:hover .cat-arrow { transform: translateX(12px); }
.cat-num {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.cat-name {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}
.cat-tag {
  font-size: 16px;
  letter-spacing: -0.005em;
  opacity: 0.8;
}
.cat-arrow {
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  text-align: right;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
  font-weight: 400;
}

/* ---------- Brands ticker ---------- */
.brands {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.brands-kicker {
  position: absolute;
  top: 14px;
  left: 6%;
  z-index: 2;
  background: var(--paper);
  padding-right: 24px;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.55;
}
.ticker {
  padding: 52px 0 32px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, var(--paper) 8%, var(--paper) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, var(--paper) 8%, var(--paper) 92%, transparent 100%);
}
.ticker-track {
  display: flex;
  gap: 44px;
  align-items: center;
  width: max-content;
  animation: tickerScroll 75s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.035em;
  color: var(--ink);
  white-space: nowrap;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 64px;
}
.ticker-item img {
  height: 64px;
  width: auto;
  display: block;
  max-width: none;
}
.ticker-item.dark-tile img {
  height: 64px;
  width: auto;
  padding: 6px 14px;
  background: var(--ink);
  border-radius: 2px;
}
.ticker-item:hover { opacity: 0.55; }
.ticker-dot {
  font-size: 10px;
  color: var(--ink);
  opacity: 0.3;
  flex-shrink: 0;
  transform: translateY(-4px);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .ticker { mask-image: none; -webkit-mask-image: none; overflow-x: auto; }
}

/* ---------- Editorial / Visit ---------- */
.visit {
  background: var(--ink);
  color: var(--paper);
  padding: 110px 6%;
}
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.visit .kicker { opacity: 0.6; }
.hours-table { font-family: "Space Mono", monospace; font-size: 12px; line-height: 2; }
.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(244,241,236,0.18);
  padding: 14px 0;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .lbl { opacity: 0.55; letter-spacing: 0.15em; text-transform: uppercase; }
.hours-row a { color: var(--paper); border-bottom: 1px solid rgba(244,241,236,0.3); }

/* ---------- Support ---------- */
.support { padding: 110px 6%; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.support-card {
  border-top: 1px solid var(--ink);
  padding-top: 26px;
  display: block;
  color: var(--ink);
}
.support-card .sc-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 14px;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.support-card .sc-desc { font-size: 14px; line-height: 1.6; opacity: 0.8; }
.support-card .sc-cta {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 24px;
  display: inline-block;
  position: relative;
}
.support-card .sc-cta::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.support-card:hover .sc-cta::after { transform: scaleX(1); transform-origin: left; }
.support-card:hover .sc-title { transform: translateX(6px); }

/* ---------- Footer ---------- */
footer.site {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 6% 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,241,236,0.18);
}
.foot-logo {
  display: block;
  line-height: 0;
}
.foot-logo img {
  height: 80px;
  width: auto;
  display: block;
}
.foot-addr {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 22px;
  opacity: 0.7;
  line-height: 1.8;
}
.foot-col .h {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 18px;
}
.foot-col a, .foot-col div.link {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  display: block;
  color: var(--paper);
  opacity: 0.9;
}
.foot-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
}
.foot-bottom a { color: var(--paper); }
.foot-bottom .links { display: flex; gap: 24px; }

/* ---------- Legal pages ---------- */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 90px 6% 120px;
}
.legal .page-h {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 500;
  margin: 14px 0 0;
}
.legal .page-h .light { font-weight: 400; opacity: 0.55; display: block; }
.legal .page-rule { height: 1px; background: var(--ink); margin: 44px 0 30px; }
.legal .lede { font-size: 19px; line-height: 1.55; margin: 0 0 40px; letter-spacing: -0.005em; }
.legal .sh {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 44px 0 14px;
  font-weight: 400;
}
.legal p { font-size: 15px; line-height: 1.7; margin: 0 0 18px; letter-spacing: -0.005em; }
.legal .updated {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 48px;
}
.legal a { border-bottom: 1px solid currentColor; }

/* ---------- Animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.rise { animation: rise 0.9s cubic-bezier(.16,1,.3,1) both; }
.fade { animation: fadeIn 1.2s ease both; }
.fade-d1 { animation: fadeIn 1.2s ease 0.25s both; }
.fade-d2 { animation: fadeIn 1.2s ease 0.5s both; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 60px 6% 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { aspect-ratio: 5 / 4; }
  .section-head { grid-template-columns: 1fr; gap: 32px; padding: 80px 6% 50px; }
  .cat-row { grid-template-columns: 40px 1fr 32px; gap: 16px; padding: 24px 6%; }
  .cat-tag { display: none; }
  .cat-name { font-size: 28px; }
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .support-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .values div:last-child { grid-column: 1 / -1; }
  .nav-links { gap: 18px; font-size: 10px; letter-spacing: 0.15em; }
  h1.hero-h { font-size: clamp(44px, 12vw, 80px); }
}

@media (max-width: 560px) {
  .nav-links a:nth-child(n+3) { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 12px; }
}
