:root {
  --navy: #0a1628;
  --soil: #3d2e24;
  --bark: #5c4636;
  --moss: #2d5a3d;
  --sage: #7d9b76;
  --cream: #fdf8f0;
  --wheat: #e8dcc8;
  --amber: #e07a3d;
  --gold: #f4a261;
  --rust: #9e5b3c;
  --shadow: rgba(10, 22, 40, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius: 12px;
  --wrap: min(1120px, 92vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cream);
}

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

a {
  color: var(--moss);
}

a:hover {
  color: var(--rust);
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 70, 54, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--soil);
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}

.logo-mark {
  font-size: 1.75rem;
}

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

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.logo-text small {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--bark);
}

.main-nav a:hover {
  color: var(--moss);
}

.nav-cta {
  background: var(--amber);
  color: var(--navy) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--soil);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(45, 90, 61, 0.75) 45%, rgba(224, 122, 61, 0.35) 100%),
    url("assets/hero-bg.jpg") center/cover no-repeat;
  background-color: var(--navy);
}

.hero-content {
  position: relative;
  padding: 4rem 0 5rem;
  color: var(--cream);
  max-width: 38rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.hero-tagline-alt {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  opacity: 0.9;
  margin: 0 0 1.25rem;
}

.hero-domain {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.story-lead {
  font-size: 1.15rem;
  color: var(--bark);
}

.about-logo {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px var(--shadow);
}

.about-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--bark);
  margin-top: 0.75rem;
}

.visit-tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  margin: 0 0 1rem;
}

.logos {
  background: #fff;
}

.logo-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .logo-showcase { grid-template-columns: repeat(2, 1fr); }
}

.logo-showcase figure {
  margin: 0;
  text-align: center;
}

.logo-showcase img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--cream);
}

.logo-showcase figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--bark);
}

.contact-status a {
  color: var(--moss);
  font-weight: 600;
}

.hero-lead {
  font-size: 1.15rem;
  opacity: 0.95;
  margin: 0 0 2rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 232, 0.6);
}

.btn-ghost:hover {
  background: rgba(246, 241, 232, 0.15);
  color: var(--cream);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-head h2,
.about h2,
.visit h2,
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--soil);
}

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

/* About */
.about {
  background: var(--wheat);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-copy p {
  color: var(--bark);
  margin: 0 0 1rem;
}

.values {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.values li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.values strong {
  display: block;
  color: var(--soil);
}

.values span {
  font-size: 0.95rem;
  color: var(--bark);
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.photo-frame {
  background: linear-gradient(145deg, var(--sage), var(--moss));
  border-radius: var(--radius);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: rgba(246, 241, 232, 0.9);
  font-size: 0.9rem;
  border: 2px dashed rgba(246, 241, 232, 0.35);
}

.main-photo {
  grid-column: 1 / -1;
  min-height: 220px;
}

/* Shop */
/* Brands */
.brands {
  background: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.brand-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--wheat);
  border: 1px solid rgba(92, 70, 54, 0.1);
}

.brand-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
  color: var(--soil);
}

.brand-card p {
  margin: 0;
  color: var(--bark);
}

.brand-card--mead {
  background: linear-gradient(160deg, #2a2438, #4a3d5c);
  color: var(--cream);
  border: none;
}

.brand-card--mead h3,
.brand-card--mead p {
  color: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 8px 24px var(--shadow);
  border: 1px solid rgba(92, 70, 54, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px var(--shadow);
}

.product-card.highlight {
  background: linear-gradient(160deg, var(--moss), #3a5234);
  color: var(--cream);
}

.product-card.highlight h3,
.product-card.highlight p {
  color: var(--cream);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--soil);
}

.product-card p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--bark);
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--wheat);
  color: var(--bark);
}

.product-card.highlight .tag {
  background: rgba(246, 241, 232, 0.2);
  color: var(--cream);
}

.card-subbrand {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust);
}

.product-card--mead {
  border-color: rgba(74, 61, 92, 0.2);
}

.product-card--mead .card-subbrand {
  color: #5c4a6e;
}

.product-card--mead.highlight .card-subbrand {
  color: var(--wheat);
}

.shop-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--wheat);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  color: var(--bark);
  font-size: 0.95rem;
}

/* Visit */
.visit {
  background: var(--navy);
  color: var(--cream);
}

.visit h2 {
  color: var(--cream);
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.visit p {
  opacity: 0.92;
}

.location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  margin-top: 1.5rem;
}

.pin {
  font-size: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 2rem;
  background: rgba(246, 241, 232, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(246, 241, 232, 0.15);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 1rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Contact */
.contact-single {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.contact-single h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
}

.contact-single > p {
  color: var(--bark);
  margin: 0 0 2rem;
}

.contact-status {
  text-align: left;
  background: #fff;
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px var(--shadow);
  margin-bottom: 1.5rem;
}

.contact-status h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--soil);
}

.contact-status ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--bark);
}

.contact-status li {
  margin-bottom: 0.5rem;
}

.contact-future {
  font-size: 0.95rem;
  color: var(--bark);
  font-style: italic;
  margin: 0;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background: var(--navy);
  color: var(--wheat);
  text-align: center;
}

.site-footer a {
  color: var(--gold);
}

.footer-inner p {
  margin: 0.25rem 0;
}

.footer-small {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 800px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(92, 70, 54, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .about-grid,
  .visit-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.5rem 0 4rem;
  }
}