/*
Theme Name: Briar & Coach Launch V2
Theme URI: https://briarandcoach.com
Author: Briar & Coach
Description: Production landing page inspired by the approved Briar & Coach mockup. No embedded full-page mockup screenshots.
Version: 2.0
License: GPL-2.0-or-later
Text Domain: briar-coach-launch-v2
*/

:root {
  --olive: #5f674f;
  --olive-dark: #454b39;
  --cream: #f7f1e6;
  --paper: #fffaf1;
  --walnut: #3d3126;
  --muted: #71675d;
  --border: #ded0bc;
  --brass: #aa8754;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--walnut);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.announcement {
  background: var(--olive);
  color: #fffaf1;
  text-align: center;
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: 12px;
  font-weight: 700;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 124px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-right { justify-content: flex-end; }

.nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 800;
}

.logo {
  text-align: center;
  display: block;
  text-decoration: none;
}

.logo img {
  width: 260px;
  max-width: 40vw;
  display: block;
}

.hero {
  min-height: 620px;
  background-image:
    linear-gradient(90deg, rgba(32,24,18,.82) 0%, rgba(32,24,18,.56) 44%, rgba(32,24,18,.12) 100%),
    url('assets/hero-scene.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  color: #fffaf1;
}

.kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 14px;
  font-weight: 900;
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.1rem, 7.8vw, 6.7rem);
  line-height: .98;
  font-weight: 400;
  max-width: 690px;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  line-height: 1.75;
  font-size: 18px;
}

.button {
  display: inline-flex;
  margin-top: 28px;
  padding: 15px 24px;
  align-items: center;
  justify-content: center;
  background: var(--olive);
  color: #fffaf1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 900;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.collections {
  padding: 58px 0 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.collection-card {
  background: var(--paper);
  border: 1px solid var(--border);
}

.collection-card img {
  width: 100%;
  height: 195px;
  display: block;
  object-fit: cover;
}

.collection-body {
  padding: 24px 24px 26px;
}

.collection-body h2 {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
  font-weight: 400;
}

.collection-body p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.collection-body a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 900;
  font-size: 12px;
}

.story {
  padding: 36px 0 58px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 52px;
  align-items: center;
}

.story-image img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}

.story-content .label {
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--olive);
  font-weight: 900;
  font-size: 13px;
}

.story-content h2 {
  margin: 12px 0 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  font-weight: 400;
}

.story-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.values {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value {
  text-align: center;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.value strong {
  display: block;
  color: var(--walnut);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  margin-bottom: 8px;
}

.contact {
  padding: 60px 0;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.contact h2 {
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 400;
}

.contact p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-links a {
  border: 1px solid var(--border);
  background: var(--paper);
  padding: 13px 16px;
  text-decoration: none;
  font-weight: 800;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 28px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--walnut);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 13px 14px;
  font: inherit;
  color: var(--walnut);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  background: var(--olive);
  color: #fffaf1;
}

.footer-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 30px;
}

.footer img {
  width: 185px;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.footer h4 {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}

.footer p,
.footer a {
  color: #efe5d7;
  line-height: 1.7;
  text-decoration: none;
  display: block;
  margin: 0 0 6px;
}

.copyright {
  border-top: 1px solid rgba(255,250,241,.25);
  text-align: center;
  padding: 15px;
  color: #efe5d7;
  font-size: 13px;
}

@media (max-width: 960px) {
  .nav {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 0;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .collections,
  .values {
    grid-template-columns: repeat(2, 1fr);
  }

  .story,
  .contact {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .announcement {
    letter-spacing: .15em;
  }

  .hero {
    min-height: 560px;
  }

  .collections,
  .values,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

  .logo img {
    max-width: 260px;
    width: 78vw;
  }
}
