:root {
  --garlic-white: #F8F4EC;
  --soil-brown: #5A3C27;   /* adjust to exact brand if needed */
  --deep-clay: #A56E4E;
  --charcoal-ink: #1E1917;
  --stem-green: #5F7C4A;
  --max-width: 1120px;
}

/* Global Resets */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--garlic-white);
  color: var(--charcoal-ink);
  line-height: 1.6;
}

/* Layout Helpers */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: rgba(30, 25, 23, 0.7);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2rem;
  margin: 0 0 1rem 0;
}

.section-description {
  max-width: 40rem;
  margin: 0;
}

/* Typography */

h1, h2, h3, h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0;
}

p {
  margin: 0 0 1rem 0;
}

/* Header */

.site-header {
  background-color: var(--charcoal-ink);
  color: var(--garlic-white);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.brand-text-primary {
  font-family: "Playfair Display", "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.brand-text-secondary {
  font-size: 0.7rem;
  opacity: 0.7;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--garlic-white);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav a:hover,
.site-nav a:focus {
  text-decoration: underline;
  text-decoration-color: var(--stem-green);
  text-underline-offset: 0.25rem;
}

/* use .nav-link--active on the current page */
.nav-link--active {
  text-decoration: underline;
  text-decoration-color: var(--stem-green);
  text-underline-offset: 0.25rem;
}

/* Footer */

.site-footer {
  margin-top: auto;
  background-color: var(--garlic-white);
  border-top: 1px solid rgba(90, 60, 39, 0.1);
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr) minmax(0, 1.5fr);
  gap: 2rem;
}

.site-footer small {
  font-size: 0.85rem;
  color: rgba(30, 25, 23, 0.6);
}

.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(30, 25, 23, 0.7);
  margin-bottom: 0.75rem;
}

.footer-links,
.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 0.4rem;
}

.footer-links a,
.footer-social a {
  font-size: 0.85rem;
  text-decoration: none;
  color: rgba(30, 25, 23, 0.65);
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--charcoal-ink);
  text-decoration: underline;
  text-decoration-color: var(--stem-green);
  text-underline-offset: 0.18rem;
}

/* Buttons */

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  background-color: var(--stem-green);
  color: var(--garlic-white);
}

.button--primary:hover {
  background-color: #4a5f38;
}

.button--ghost {
  background-color: transparent;
  color: var(--stem-green);
  border-color: var(--stem-green);
}

.button--ghost:hover {
  background-color: rgba(95, 124, 74, 0.08);
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(90, 60, 39, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
  padding: 1.5rem 1.75rem;
}

.card-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-body {
  font-size: 0.95rem;
}

/* Hero & Logo Band (Home) */

.logo-band {
  background-color: var(--garlic-white);
  border-bottom: 1px solid rgba(90, 60, 39, 0.06);
}

.logo-band-inner {
  padding: 3rem 1.5rem 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-band-logo {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.logo-band-tagline {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--soil-brown);
}

/* Home hero */

.hero {
  background-color: var(--stem-green);
  color: var(--garlic-white);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 3.75rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 3rem;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: rgba(248, 244, 236, 0.8);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--garlic-white);
}

.hero-title-em {
  color: var(--garlic-white);
}

.hero-title-alt {
  color: var(--garlic-white);
}

.hero-copy {
  font-size: 1rem;
  max-width: 34rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin: 1.75rem 0;
  font-size: 0.9rem;
}

.hero-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  opacity: 0.8;
}

.hero-meta-value {
  display: block;
}

.hero-image-card {
  background-color: #f6f1e3;
  border-radius: 1.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(30, 25, 23, 0.1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 1.25rem;
}

/* Journal list */

.journal-header-band {
  background-color: var(--garlic-white);
  border-bottom: 1px solid rgba(90, 60, 39, 0.06);
}

.journal-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
}

.journal-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
}

.journal-entry-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.journal-card {
  background-color: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(90, 60, 39, 0.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.03);
  padding: 1.5rem 1.75rem;
}

.journal-card-date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(30, 25, 23, 0.7);
  margin-bottom: 0.4rem;
}

.journal-card-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.journal-card-body {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.journal-card-meta {
  font-size: 0.8rem;
  color: rgba(30, 25, 23, 0.7);
}

/* Sidebar */

.sidebar-box {
  border-radius: 1.25rem;
  border: 1px solid rgba(90, 60, 39, 0.08);
  padding: 1.5rem 1.75rem;
  background-color: #fff;
  margin-bottom: 1.5rem;
}

.sidebar-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-pill {
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(90, 60, 39, 0.12);
  font-size: 0.8rem;
}

/* Forms (Contact Page) */

.form-section {
  padding: 3rem 0 4rem;
}

.form {
  max-width: 720px;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(30, 25, 23, 0.75);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(90, 60, 39, 0.2);
  background-color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Contact layout */

.contact-info-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 2.5rem;
}

.map-placeholder {
  border-radius: 1.5rem;
  border: 1px solid rgba(30, 25, 23, 0.12);
  background-color: #f3e9db;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  min-height: 220px;
}

/* Social section */

.social-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.social-list li {
  margin-bottom: 0.5rem;
}

/* Single post */

.post-header {
  border-bottom: 1px solid rgba(90, 60, 39, 0.06);
}

.post-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
}

.post-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(30, 25, 23, 0.7);
  margin-bottom: 0.5rem;
}

.post-title {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.post-deck {
  max-width: 40rem;
}

.post-body {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.post-body img {
  max-width: 100%;
  border-radius: 1.25rem;
  border: 1px solid rgba(30, 25, 23, 0.12);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  margin: 1.5rem 0;
}

.post-tags {
  margin-top: 2rem;
}

.post-tags-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(30, 25, 23, 0.7);
  margin-bottom: 0.5rem;
}

.back-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--charcoal-ink);
}

.back-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--stem-green);
  text-underline-offset: 0.2rem;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .journal-layout,
  .contact-info-grid,
  .site-footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 2.25rem;
  }

  .site-footer-inner {
    gap: 1.5rem;
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .post-title {
    font-size: 2rem;
  }
}
