/* ============================================================
   True Haven Press — Stylesheet
   Colors: Primary #555936 | Secondary #868C58 | Accent #73412F
   ============================================================ */

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

:root {
  --color-primary:    #555936;
  --color-secondary:  #868C58;
  --color-accent:     #73412F;
  --color-accent-dark:#5e3424;
  --color-primary-dark: #444929;
  --color-bg:         #FAFAF7;
  --color-bg-alt:     #F2F0E8;
  --color-dark:       #2A2A22;
  --color-text:       #3A3A30;
  --color-text-light: #666658;
  --color-border:     #D8D5C4;
  --font-serif:       Georgia, 'Times New Roman', Times, serif;
  --font-sans:        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width:        1100px;
  --section-pad:      5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  font-size: 1rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-primary);
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem;   margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  text-decoration: none;
}

.btn-secondary {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background-color: rgba(255,255,255,0.25);
  text-decoration: none;
}

.btn-light {
  background-color: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-light:hover {
  background-color: var(--color-bg-alt);
  border-color: var(--color-bg-alt);
  text-decoration: none;
}

.btn-outline-light {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.1);
  text-decoration: none;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 3px solid var(--color-primary);
  padding: 0.85rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: block;
  flex-shrink: 0;
}

.logo-link img {
  height: 68px;
  width: auto;
  display: block;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.main-navigation a {
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-navigation a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: linear-gradient(150deg, var(--color-primary) 0%, #3d4128 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 1.5rem;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-logo {
  height: 145px;
  width: auto;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.hero-intro {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */

.values-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.values-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 4px;
  border-top: 4px solid var(--color-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
  padding: var(--section-pad) 0;
  background: #fff;
}

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

.about-image-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.about-content-col h2 {
  margin-bottom: 1.5rem;
}

.about-leadership {
  background: var(--color-bg-alt);
  padding: 2.5rem 2rem;
  border-left: 5px solid var(--color-secondary);
  border-radius: 0 4px 4px 0;
}

.about-leadership h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* ============================================================
   WHY WE EXIST SECTION
   ============================================================ */

.why-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.why-section h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}

.why-section > .container > p {
  max-width: 760px;
  margin: 0 auto 1rem;
  text-align: center;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.diff-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 4px;
  border-bottom: 3px solid var(--color-accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.diff-card h4 {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.diff-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ============================================================
   WHAT WE EVALUATE SECTION
   ============================================================ */

.evaluate-section {
  padding: var(--section-pad) 0;
  background: var(--color-primary);
  color: #fff;
}

.evaluate-section h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.evaluate-section > .container > p {
  text-align: center;
  color: rgba(255,255,255,0.82);
  margin-bottom: 3rem;
}

.evaluate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.eval-card {
  background: rgba(255,255,255,0.08);
  padding: 1.75rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}

.eval-card h3 {
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.eval-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

.evaluate-cta {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BOOK STORE / PORTFOLIO SECTION
   ============================================================ */

.books-section {
  padding: var(--section-pad) 0;
  background: #fff;
}

.books-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.books-section > .container > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 3rem;
}

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

.portfolio-item {
  background: var(--color-bg-alt);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
  transition: transform 0.2s, box-shadow 0.2s;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.portfolio-image {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
  background: var(--color-bg);
  padding: 1rem;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.portfolio-content .client {
  color: var(--color-secondary);
  font-style: italic;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.portfolio-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.portfolio-link {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s;
}

.portfolio-link:hover {
  background: var(--color-accent-dark);
  text-decoration: none;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section-wrapper {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.gallery-section-wrapper h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.photo-item {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.09);
}

.photo-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.photo-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   PRESS / REVIEWS SECTION
   ============================================================ */

.press-section {
  padding: var(--section-pad) 0;
  background: var(--color-primary);
  color: #fff;
}

.press-section h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}

.press-items {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.press-section .portfolio-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 5px solid var(--color-secondary);
  border-radius: 0 4px 4px 0;
  box-shadow: none;
  transition: transform 0.2s;
}

.press-section .portfolio-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.press-section .portfolio-content h3 {
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.75rem;
}

.press-section .portfolio-content .client {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--color-secondary);
  border: 1px solid rgba(134,140,88,0.45);
  border-radius: 3px;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}

.press-section .portfolio-content p:not(.client) {
  font-size: 0.9rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.press-section .portfolio-link {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.82rem;
}

.press-section .portfolio-link:hover {
  background: rgba(255,255,255,0.25);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-section > .container > p {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-item {
  text-align: center;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: 0.3rem;
}

.contact-item a {
  font-size: 1.05rem;
  color: var(--color-dark);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--color-accent);
}

.contact-cta {
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-logo-link {
  display: block;
}

.footer-logo {
  height: 62px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-description {
  font-size: 0.95rem;
  max-width: 420px;
  color: rgba(255,255,255,0.65);
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  font-style: italic;
  max-width: 600px;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 820px) {
  :root {
    --section-pad: 3.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-col img {
    height: 280px;
  }

  .header-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .main-navigation ul {
    justify-content: center;
    gap: 1.25rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 560px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  .hero {
    padding: 4rem 1.25rem;
  }

  .hero-logo {
    height: 105px;
  }

  .hero-intro {
    font-size: 1.05rem;
  }

  .hero-buttons,
  .evaluate-cta {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .values-grid,
  .differentiators-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 1.25rem;
  }
}
