/* V5-02 — The Outfitter (Warm Oregon) */
:root {
  --forest: #1e3a28;
  --forest-deep: #142b1d;
  --parchment: #f2e8d2;
  --parchment-soft: #ede2c5;
  --copper: #b55e2a;
  --copper-soft: rgba(181, 94, 42, 0.12);
  --stone: #6b6057;
  --ink: #1a1008;
  --rule: rgba(107, 96, 87, 0.25);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 3px;
  --max: 1200px;
  --pad-x: clamp(1rem, 4vw, 3rem);
  --pad-y: clamp(3rem, 8vw, 6rem);
}

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

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: -9999px;
  background: var(--copper); color: var(--parchment); padding: 0.5rem 1rem; font-weight: 700;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 100; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 700;
  margin: 0 0 1rem;
}
.eyebrow--copper { color: var(--copper); }

.section__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}
.nav--transparent {
  background: transparent;
  color: var(--parchment);
}
.nav--scrolled {
  background: var(--forest);
  border-bottom-color: rgba(242, 232, 210, 0.1);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--pad-x);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__mark {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--parchment);
}
.nav__mark span { font-style: italic; font-weight: 400; }
.nav__links { display: none; gap: 1.75rem; margin-left: auto; }
.nav__links a {
  font-size: 0.875rem; font-weight: 600; color: var(--parchment); opacity: 0.85;
  letter-spacing: 0.02em;
}
.nav__links a:hover { opacity: 1; }
.nav__phone { margin-left: auto; }
@media (min-width: 880px) { .nav__links { display: flex; } .nav__phone { margin-left: 0; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  min-height: 44px;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
  transition: transform 200ms ease, background-color 200ms ease;
  cursor: pointer;
}
.btn--primary { background: var(--copper); color: var(--parchment); }
.btn--primary:hover { transform: translateY(-1px); background: #c46934; }
.btn--ghost { border-color: var(--parchment); color: var(--parchment); background: transparent; }
.btn--ghost:hover { background: rgba(242, 232, 210, 0.08); }
.btn--pill { border-radius: 999px; padding: 0.6rem 1.1rem; font-size: 0.8125rem; min-height: 40px; background: var(--copper); color: var(--parchment); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 6rem var(--pad-x) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  color: var(--parchment);
  animation: fade-in 500ms ease-out;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,16,8,0.15) 0%, rgba(30,58,40,0.65) 100%);
  z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 820px; }
.hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--parchment);
  margin: 0 0 1.25rem;
}
.hero__title em { font-style: normal; color: var(--copper); }
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  margin: 0 0 1.75rem;
  max-width: 56ch;
  color: var(--parchment-soft);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero .eyebrow { color: var(--copper); }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* Trust */
.trust {
  background: var(--parchment-soft);
  padding: 1.25rem var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; justify-content: center;
  font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--forest); font-weight: 700;
}
.trust__dot { color: var(--copper); }

/* Services alternating */
.services { padding: var(--pad-y) var(--pad-x); background: var(--parchment); }
.services__inner { max-width: var(--max); margin: 0 auto; }
.services__head { margin-bottom: 3rem; }

.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.row.is-visible { opacity: 1; transform: translateY(0); }
.row__media { aspect-ratio: 16 / 9; max-width: 380px; overflow: hidden; border-radius: var(--radius); background: var(--forest); }
.row__media img { width: 100%; height: 100%; object-fit: cover; }
.row__num {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  color: var(--copper);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.row__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.row__copy { color: var(--stone); margin: 0; max-width: 56ch; }

@media (min-width: 768px) {
  .row { grid-template-columns: 380px 1fr; gap: 3rem; padding: 3rem 0; }
  .row:nth-child(even) { grid-template-columns: 1fr 380px; }
  .row:nth-child(even) .row__media { order: 2; }
  .row:nth-child(even) .row__body { order: 1; }
}

/* Welcoming */
.welcoming {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  background: var(--forest);
  color: var(--parchment);
  overflow: hidden;
}
.welcoming__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}
.welcoming__panel {
  position: relative; z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.welcoming__panel.is-visible { opacity: 1; transform: translateY(0); }
.welcoming__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--parchment);
  margin: 0 0 1.25rem;
}
.welcoming__title em { font-style: italic; font-weight: 600; color: var(--copper); }
.welcoming__body {
  color: var(--parchment-soft);
  font-size: 1.0625rem;
  margin: 0 auto 2rem;
  max-width: 56ch;
}
.welcoming .eyebrow { color: var(--copper); }

/* Reviews */
.reviews { padding: var(--pad-y) var(--pad-x); background: var(--parchment); }
.reviews__inner { max-width: var(--max); margin: 0 auto; }
.reviews__head { text-align: center; margin-bottom: 3rem; }

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 880px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.quote {
  position: relative;
  margin: 0;
  padding: 1rem 0 0;
}
.quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--copper);
  opacity: 0.3;
  margin-bottom: 0.25rem;
}
.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1rem;
}
.quote cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
}

/* Location */
.location {
  background: var(--forest);
  color: var(--parchment);
  padding: var(--pad-y) var(--pad-x);
}
.location__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.location__address-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  color: var(--parchment);
  margin: 0 0 1.5rem;
}
.location__hours { margin: 0 0 1.5rem; }
.hours__row {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid rgba(242, 232, 210, 0.12);
  padding: 0.625rem 0;
  font-size: 0.9375rem;
}
.hours__row dt { color: var(--copper); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.8125rem; }
.hours__row dd { margin: 0; color: var(--parchment); }
.location .eyebrow { color: var(--copper); }
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest-deep);
}
.location__map svg { width: 100%; height: auto; display: block; }
@media (min-width: 880px) { .location__grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; } }

/* Contact */
.contact {
  background: var(--parchment);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}
.contact__inner {
  max-width: 640px; margin: 0 auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.contact__inner.is-visible { opacity: 1; transform: translateY(0); }
.contact__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
}
.contact__title em { font-style: italic; color: var(--copper); }
.contact__body { color: var(--stone); margin: 0 0 1.75rem; }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--parchment-soft);
  padding: var(--pad-y) var(--pad-x) 2rem;
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__col p { margin: 0 0 0.5rem; font-size: 0.875rem; }
.footer__heading {
  color: var(--copper);
  font-size: 0.75rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.875rem !important;
}
.footer__mark { font-family: var(--font-display); font-style: italic; color: var(--parchment); font-size: 1.0625rem !important; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 0.4rem; font-size: 0.875rem; }
.footer__list a:hover, .footer__col a:hover { color: var(--copper); }
.footer__legal {
  border-top: 1px solid rgba(242, 232, 210, 0.12);
  padding-top: 2rem;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.footer__ffl { color: var(--parchment); margin: 0 0 0.75rem; font-weight: 700; }
.footer__ffl-num { font-family: ui-monospace, "Menlo", monospace; color: var(--copper); }
.footer__age { color: var(--parchment-soft); margin: 0 0 0.75rem; max-width: 70ch; }
.footer__copy { margin: 0; }
.footer__socials { margin-top: 0.5rem !important; }

@media (min-width: 720px) { .footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__cols { grid-template-columns: repeat(4, 1fr); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero { animation: none; }
}
