/* ============================================
   The Bleacher Dads — Team Merch Shop
   English / LTR
   ============================================ */

:root {
  --cream: #faf6ef;
  --cream-soft: #f2ece0;
  --parchment: #e6dcc7;
  --ink: #14181f;
  --ink-soft: #38404d;
  --muted: #7a8290;
  --navy: #1a2a44;
  --navy-dark: #0f1a2e;
  --navy-light: #2e4364;
  --gold: #d4a147;
  --gold-dark: #a67c2a;
  --gold-light: #e6c176;
  --coral: #e07856;
  --coral-dark: #b85838;
  --border: #d9cfba;
  --shadow-sm: 0 2px 8px rgba(20, 30, 50, 0.08);
  --shadow-md: 0 6px 20px rgba(20, 30, 50, 0.14);
  --shadow-lg: 0 14px 40px rgba(20, 30, 50, 0.22);
  --radius: 8px;
  --radius-lg: 16px;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-family: 'Bebas Neue', 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: 1px;
  line-height: 1.05;
}
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }

a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--coral-dark); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: .3px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); font-weight: 500; }
.topbar a:hover { color: var(--cream); }
.topbar-right { display: inline-flex; gap: 18px; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: 'Bebas Neue', 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 2px;
}
.brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--navy); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s;
}
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: all .3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(224, 120, 86, 0.10), transparent 55%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-soft) 60%, var(--parchment) 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(212, 161, 71, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(26, 42, 68, 0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(26, 42, 68, 0.08);
  color: var(--navy);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(26, 42, 68, 0.15);
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--navy);
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  text-align: center;
}
.btn-primary {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-paypal {
  background: #ffc439;
  color: #111;
  border-color: #ffc439;
  width: 100%;
  padding: 12px 20px;
  font-size: 13px;
}
.btn-paypal:hover {
  background: #f0b230;
  border-color: #f0b230;
  color: #111;
}
.btn-buynow {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
  width: 100%;
  padding: 10px 20px;
  font-size: 12px;
}
.btn-buynow:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.art-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-cart {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 8px 18px !important;
  border-radius: 20px;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: .5px;
}
.nav-cart:hover {
  background: var(--gold-dark);
  color: var(--cream) !important;
}
.nav-cart::after { display: none !important; }

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  color: var(--coral-dark);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ============================================
   STORY
   ============================================ */
.story {
  background: var(--cream-soft);
  position: relative;
}
.story-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.story-inner p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 18px;
  line-height: 1.85;
}
.story-inner strong { color: var(--navy); font-weight: 700; }
.story-inner em { color: var(--coral-dark); font-style: italic; }
.story-signature {
  margin-top: 30px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 600;
}
.divider-ornament {
  text-align: center;
  color: var(--gold);
  font-size: 20px;
  margin: 32px 0;
  letter-spacing: 12px;
}

/* ============================================
   GALLERY / SHOP
   ============================================ */
.gallery {
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.art-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.art-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.art-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.art-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.art-image-placeholder {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gold-light);
  font-size: 3.4rem;
  letter-spacing: 6px;
  opacity: .55;
}
.art-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--coral);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.art-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.art-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.art-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.art-desc {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 18px;
  flex: 1;
  line-height: 1.6;
}
.art-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--coral-dark);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}
.art-price small {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 6px;
}

/* ============================================
   INFO STRIP
   ============================================ */
.info-strip {
  background: var(--parchment);
  padding: 44px 0;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.info-item {
  text-align: center;
}
.info-item-icon {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.info-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.info-item p {
  color: var(--ink-soft);
  font-size: 14px;
}

/* ============================================
   REQUEST FORM
   ============================================ */
.request {
  background: var(--cream);
}
.request-form {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field-full {
  grid-column: 1 / -1;
}
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
}
.form-label em {
  color: var(--coral-dark);
  font-style: normal;
  margin-left: 2px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(212, 161, 71, 0.15);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  opacity: .8;
}
.form-block {
  display: none;
  padding-top: 6px;
  border-top: 1px dashed var(--border);
  margin-top: 6px;
}
.form-block.active {
  display: block;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-status {
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}
.form-status.error { color: var(--coral-dark); font-style: normal; font-weight: 600; }
.form-status.success { color: #2f7a3a; font-style: normal; font-weight: 600; }

/* ============================================
   CUSTOM / YOUR TEAM
   ============================================ */
.custom {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.custom::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 161, 71, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.custom .container { position: relative; z-index: 1; }
.custom h2 { color: var(--cream); }
.custom .section-eyebrow { color: var(--gold-light); }
.custom .section-header p { color: var(--parchment); }
.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.custom-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 161, 71, 0.3);
  padding: 28px 22px;
  border-radius: var(--radius);
  text-align: center;
}
.custom-item-icon {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.custom-item h3 {
  color: var(--cream);
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}
.custom-item p {
  color: var(--parchment);
  font-size: 14px;
}
.custom-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--cream-soft);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.test-card {
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.test-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}
.test-text {
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
.test-author {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-weight: 700;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--cream);
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact-methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.contact-method {
  background: white;
  border: 1px solid var(--border);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  min-width: 220px;
  transition: all .25s;
}
.contact-method:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.contact-method-label {
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-method-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: var(--parchment);
  padding: 50px 0 24px;
  text-align: center;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.footer-tag {
  color: var(--parchment);
  opacity: .75;
  font-style: italic;
  margin-bottom: 24px;
  font-size: 14px;
  letter-spacing: 1px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  margin-top: 30px;
  font-size: 13px;
  color: var(--parchment);
  opacity: .6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0 50px; }

  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    display: none;
    border-top: 1px solid var(--border);
  }
  .nav.open { display: flex; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }

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

  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-right { justify-content: center; }

  .request-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
}
