/* =============================================
   GOOD IDEA SHIRTS — Main Stylesheet
   ============================================= */

:root {
  --teal: #2A8C8C;
  --teal-dark: #1d6363;
  --amber: #F5A623;
  --orange: #E8621A;
  --orange-dark: #c9521a;
  --charcoal: #2D2D2D;
  --light: #F7F7F7;
  --white: #ffffff;
  --gray: #888;
  --border: #e0e0e0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

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

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- TYPOGRAPHY ---- */

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 36px;
}

/* ---- NAVBAR ---- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--teal);
}

.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--teal);
  text-decoration: none;
}

.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--charcoal);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  padding: 16px 32px;
}

.mobile-menu a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.open { display: flex; }

/* ---- HERO ---- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: var(--charcoal);
}

.hero-text {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  line-height: 0.92;
  color: var(--white);
}

.hero-headline .teal { color: var(--teal); }

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #aaa;
  max-width: 340px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  mix-blend-mode: luminosity;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 140, 140, 0.45);
}

.hero-hashtag {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.8);
  z-index: 2;
}

/* ---- TAGLINE BAR ---- */

.tagline-bar {
  background: var(--amber);
  padding: 22px 32px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

/* ---- BUTTONS ---- */

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
}

.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: white; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  border: 2px solid var(--teal);
  transition: all 0.2s;
}

.btn-secondary:hover { background: var(--teal); color: white; }

.btn-shop {
  display: inline-block;
  background: var(--white);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
}

.btn-shop:hover { background: var(--amber); color: var(--charcoal); }

.btn-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-submit:hover { background: var(--orange-dark); }

/* ---- SERVICES ---- */

.services {
  padding: 72px 0;
  background: var(--light);
}

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

.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}

.service-card:hover { border-top-color: var(--orange); }

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg { width: 20px; height: 20px; }

.service-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.service-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* ---- CTA STRIP ---- */

.cta-strip {
  background: var(--charcoal);
  padding: 64px 32px;
}

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

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- PAGE HEADER ---- */

.page-header {
  background: var(--charcoal);
  padding: 64px 0 56px;
}

.page-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--white);
  margin-top: 8px;
}

/* ---- ABOUT ---- */

.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.about-stat-panel {
  background: var(--charcoal);
  padding: 52px 40px;
}

.about-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: var(--teal);
}

.about-year-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 4px;
  margin-bottom: 36px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.about-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.about-body p strong { color: var(--charcoal); }

.promise {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
}

/* ---- WHO WE SERVE ---- */

.serve-section {
  background: var(--light);
  padding: 72px 0;
}

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

.serve-card {
  background: var(--white);
  padding: 36px 28px;
  border-top: 3px solid var(--teal);
}

.serve-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.serve-icon svg { width: 22px; height: 22px; }

.serve-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.serve-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* ---- SHOP PAGE ---- */

.shop-hero {
  background: var(--teal);
  padding: 80px 0 72px;
  text-align: center;
}

.shop-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
}

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

.how-step { text-align: center; }

.how-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}

.how-step h3 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.how-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* ---- CONTACT ---- */

.contact-section { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 6px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  color: var(--charcoal);
}

.contact-value a {
  text-decoration: none;
  color: var(--charcoal);
  transition: color 0.2s;
}

.contact-value a:hover { color: var(--teal); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--teal);
  color: var(--white);
}

.contact-note {
  background: var(--light);
  padding: 20px 24px;
  border-left: 3px solid var(--teal);
  margin-top: 8px;
}

.contact-note p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

.contact-form-wrap .section-title { margin-bottom: 24px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-row label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.form-row input,
.form-row textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-row input:focus,
.form-row textarea:focus { border-color: var(--teal); }

.form-row textarea {
  height: 120px;
  resize: vertical;
}

/* ---- FOOTER ---- */

.footer {
  background: var(--charcoal);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--teal);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 280px; }
  .hero-text { padding: 48px 28px; }
  .hero-headline { font-size: 52px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }

  .container { padding: 0 20px; }
  .page-header { padding: 48px 0 40px; }
  .page-header-title { font-size: 48px; }
  .section-title { font-size: 34px; }
  .tagline-bar { font-size: 20px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; }
}
