/* ============================================
   FAIRWAY US INC - Home Page Styles
   ============================================ */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060e1a 0%, #0D1E35 50%, #1a2f4a 100%);
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}

/* Subtle grid pattern overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Radial glow */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,169,110,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,14,26,.72) 0%, rgba(6,14,26,.55) 45%, rgba(6,14,26,.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.hero-content {
  max-width: 760px;
}

.hero-content .badge {
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Three pillars bar */
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,110,.20);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 760px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 1.5rem;
  flex: 1;
  text-align: center;
}

.pillar i {
  font-size: 1.4rem;
  color: var(--color-accent);
}

.pillar span {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
}

.pillar-divider {
  width: 1px;
  height: 48px;
  background: rgba(200,169,110,.25);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* --- Offer Section --- */
.offer-section { background: var(--color-bg); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.offer-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,110,.3);
}

.offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(200,169,110,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  color: var(--color-accent);
}

.offer-card h3 { margin-bottom: .75rem; }
.offer-card p  { color: var(--color-muted); font-size: .9rem; margin-bottom: 1.25rem; }

.offer-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.offer-list li {
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.offer-list li i { color: var(--color-accent); font-size: .75rem; }

/* --- Brands Section --- */
.brands-section { background: var(--color-white); }

.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.brand-card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
  transition: var(--transition);
}
.brand-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.brand-logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -.02em;
}

.brand-logo-sk8 {
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.sk8-mark      { font-size: 2.8rem; color: var(--color-primary); }
.brand-wordmark-sub { font-size: .9rem; font-family: var(--font-body); font-weight: 700; color: var(--color-accent); letter-spacing: .08em; }

.brand-logo-ix {}
.ix-mark       { font-size: 2.2rem; }
.ix-mark em    { font-style: normal; color: var(--color-accent); }

.brand-category {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: .75rem;
}

.brand-card p {
  font-size: .875rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.brand-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: .75rem;
  display: inline-block;
  transition: var(--transition);
}
.brand-link:hover { color: var(--color-primary); }

/* --- Why Section --- */
.why-section {
  position: relative;
  background: var(--color-bg-dark) url('../images/why-handshake.jpg') center/cover;
  padding: 5rem 0;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6,14,26,.95) 0%, rgba(13,30,53,.92) 45%, rgba(13,30,53,.75) 100%);
}

.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.80);
  font-size: .95rem;
}
.why-list li i { color: var(--color-accent); font-size: 1rem; flex-shrink: 0; }

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,110,.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .4rem;
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(200,169,110,.1);
  border-color: rgba(200,169,110,.4);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}
.stat-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* --- Flow Section --- */
.flow-section { background: var(--color-bg); }

.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .4rem;
  padding: 1.75rem 2.5rem;
  border-radius: var(--radius-lg);
  min-width: 280px;
}

.flow-node--top {
  background: rgba(200,169,110,.10);
  border: 2px solid rgba(200,169,110,.30);
}
.flow-node--top i { font-size: 1.6rem; color: var(--color-accent); margin-bottom: .25rem; }
.flow-node--top span { font-weight: 700; font-size: 1.05rem; color: var(--color-primary); }
.flow-node--top small { font-size: .8rem; color: var(--color-muted); }

.flow-node--mid {
  background: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.flow-node--mid i { font-size: 1.6rem; color: var(--color-accent); margin-bottom: .25rem; }
.flow-node--mid span { font-weight: 700; font-size: 1.1rem; color: var(--color-white); }
.flow-node--mid small { font-size: .8rem; color: rgba(255,255,255,.6); }

.flow-arrow {
  font-size: 1.2rem;
  color: var(--color-accent);
  padding: .5rem 0;
}

.flow-channels {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}

.flow-channel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: .85rem 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.flow-channel:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }
.flow-channel i { color: var(--color-accent); }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a2f4a 100%);
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* --- Responsive Home --- */
@media (max-width: 1024px) {
  .offer-grid   { grid-template-columns: 1fr; }
  .brand-cards  { grid-template-columns: 1fr 1fr; }
  .why-inner    { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hero-pillars { flex-direction: column; }
  .pillar-divider { width: 80%; height: 1px; }
  .brand-cards  { grid-template-columns: 1fr; }
  .flow-channels { gap: .75rem; }
  .cta-inner    { flex-direction: column; text-align: center; }
}
