/* Hammer & Brew Co. – Hardware + Café Funnel */

/* Metal & Wood palette */
:root {
  /* Metal */
  --metal-deep: #05080d;
  --metal-dark: #0b1118;
  --metal-mid: #151c26;

  /* Wood */
  --wood-light: #f3e3cf;
  --wood-soft: #e4cfb3;
  --wood-deep: #4b2f1a;

  /* Text & accents */
  --white: #ffffff;
  --text-light: #e5e7eb;
  --text-soft: #cbd5f5;
  --text-dark: #1f2933;
  --text-wood: #3c2617;

  --accent-amber: #f97316;
  --accent-amber-soft: #fed7aa;
  --accent-teal: #22c5c5;

  --border-metal: rgba(31, 41, 55, 0.85);
  --border-wood: rgba(148, 113, 76, 0.7);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f2933 0%, #020617 55%, #000 100%);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

/* Section backgrounds */
.section-metal {
  background: radial-gradient(circle at top, var(--metal-mid) 0%, #020617 60%, #000 100%);
  color: var(--text-light);
}

.section-metal.soft {
  background: linear-gradient(135deg, #05080d 0%, #151c26 50%, #020617 100%);
}

.section-wood {
  background: radial-gradient(circle at top, var(--wood-light) 0%, #f7ecdd 60%, #e2c9a8 100%);
  color: var(--text-wood);
}

/* Header */
.site-header {
  background: #020617;
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, var(--accent-amber), #020617);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", system-ui;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.7);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: "Oswald", system-ui;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo-subtitle {
  font-size: 0.78rem;
  color: #9ca3af;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--accent-teal);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #e5e7eb;
  text-decoration: none;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(148, 163, 184, 0.2);
  color: var(--white);
}

.nav-cta {
  background: var(--accent-amber);
  color: #111827;
  font-weight: 600;
}

/* Headings */
h1,
h2,
h3,
h4 {
  font-family: "Oswald", system-ui;
}

.section-head {
  max-width: 640px;
  margin: 0 auto;
}

.section-head h2 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--white);
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
}

.section-wood .section-head.light h2,
.section-wood h2 {
  color: var(--wood-deep);
}

.section-wood .section-head.light p,
.section-wood p {
  color: #6b4b30;
}

.section-head.center {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Grid */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* Hero */
.hero {
  padding-top: 4.5rem;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 2.5vw, 2.8rem);
  margin: 0 0 1rem;
}

.hero-copy p {
  margin: 0 0 1.5rem;
  color: var(--text-soft);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Inter";
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: var(--accent-amber);
  color: #111827;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.55);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.85);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-teal);
  border-color: rgba(148, 163, 184, 0.75);
}

.section-wood .btn.ghost {
  color: #4b2f1a;
  border-color: var(--border-wood);
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.85);
}

.section-wood .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  color: #1f2933;
}

.btn.small {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.btn.full-width {
  width: 100%;
}

/* Bullets */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.hero-points li::before {
  content: "• ";
  color: var(--accent-amber-soft);
}

.hero-points-light {
  color: #6b4b30;
}

.section-wood .hero-points-light li::before {
  color: var(--accent-amber);
}

/* Media frames */
.media-frame {
  border-radius: 18px;
  padding: 0.8rem;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
}

.media-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.media-frame.metal {
  background: radial-gradient(circle at top, #111827 0%, #020617 65%);
}

.media-frame.wood {
  background: linear-gradient(135deg, #fdf7f0 0%, #e4cfb3 100%);
  border-color: var(--border-wood);
  box-shadow: 0 18px 40px rgba(148, 113, 76, 0.45);
}

/* About split */
.about-split h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.about-split p {
  margin: 0 0 0.8rem;
}

/* Hardware cards */
.cards-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid var(--border-metal);
  background: radial-gradient(circle at top, #151c26 0%, #020617 70%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.9);
}

.card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
  color: var(--accent-teal);
}

.card p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.85);
}

.chip-highlight {
  border-color: rgba(249, 115, 22, 0.9);
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-amber-soft);
}

/* Menu (wood, e-comm style) */
.menu-layout {
  align-items: flex-start;
}

.menu-grid {
  display: grid;
  gap: 1rem;
}

.menu-card {
  background: var(--wood-soft);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-wood);
  box-shadow: 0 12px 30px rgba(148, 113, 76, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-text h3 {
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
  color: var(--wood-deep);
}

.menu-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #5b3b25;
}

.menu-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-tag {
  font-weight: 700;
  font-size: 0.88rem;
  color: #7c2d12;
}

/* Mini cards */
.mini-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.mini-card {
  background: #05080d;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
}

.mini-card h4 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: var(--accent-teal);
}

.mini-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* Process steps */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.process-steps li {
  background: #05080d;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.9);
}

.process-steps strong {
  display: block;
  font-size: 0.96rem;
  margin-bottom: 0.2rem;
  color: var(--accent-teal);
}

.process-steps p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* Light variant */
.section-wood .process-steps-light li {
  background: #f7ecdf;
  border-color: var(--border-wood);
  box-shadow: 0 10px 28px rgba(148, 113, 76, 0.4);
}

.section-wood .process-steps-light strong {
  color: var(--wood-deep);
}

.section-wood .process-steps-light p {
  color: #6b4b30;
}

/* Contact */
.contact-inner {
  align-items: flex-start;
}

.contact-inner h2 {
  font-size: 1.7rem;
  margin: 0 0 0.7rem;
}

.contact-inner p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.contact-form-mock {
  display: flex;
  justify-content: center;
}

.form-card {
  background: #05080d;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.95);
  max-width: 380px;
  width: 100%;
}

.form-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  color: var(--accent-teal);
}

.fake-input {
  display: block;
  width: 100%;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.55rem;
  border-radius: 10px;
  border: 1px dashed rgba(148, 163, 184, 0.85);
  font-size: 0.85rem;
  color: rgba(229, 231, 235, 0.9);
  background: rgba(15, 23, 42, 0.95);
}

/* Footer */
.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.6rem 0 2rem;
  font-size: 0.83rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.powered-by strong {
  color: var(--accent-teal);
}

/* Responsive */
@media (max-width: 960px) {
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-frame {
    max-width: 380px;
    margin-top: 1rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .section {
    padding: 3rem 0;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    gap: 0.4rem;
    font-size: 0.85rem;
  }

  .media-frame {
    max-width: 320px;
  }
}
