/* ============================================================
   HANDCYAAT COMPONENTS
   Covers: nav · hero · post grid · story strip · newsletter
           shop teaser · footer · blog layouts · post single
   ============================================================ */

/* ============================================================
   NAVIGATION
   ============================================================ */
.hc-nav {
  background: var(--hc-green);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hc-nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hc-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hc-nav__logo a {
  display: flex;
  align-items: center;
}

.hc-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hc-nav__menu li a {
  color: rgba(255,255,255,0.7);
  font-family: var(--hc-font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--hc-radius-sm);
  display: block;
  transition: color 0.18s, background 0.18s;
}

.hc-nav__menu li a:hover,
.hc-nav__menu li.current-menu-item a {
  color: var(--hc-yellow);
  background: rgba(255,255,255,0.06);
}

.hc-nav__cta {
  background: var(--hc-yellow);
  color: var(--hc-green) !important;
  font-family: var(--hc-font-heading);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: var(--hc-radius-sm);
  white-space: nowrap;
  transition: opacity 0.2s;
}

.hc-nav__cta:hover { opacity: 0.88; }

/* Mobile hamburger */
.hc-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hc-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hc-yellow);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.2s;
}

@media (max-width: 768px) {
  .hc-nav__menu { display: none; }
  .hc-nav__menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--hc-green);
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 2px;
  }
  .hc-nav__cta { display: none; }
  .hc-nav__toggle { display: block; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hc-hero {
  background: var(--hc-green);
  padding: 80px 32px 72px;
  text-align: center;
  overflow: hidden;
}

.hc-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.hc-hero__wordmark {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hc-hero__tagline {
  font-family: var(--hc-font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.hc-hero__tagline em {
  color: var(--hc-yellow);
  font-style: normal;
}

.hc-hero__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hc-hero__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  flex-wrap: wrap;
}

.hc-hero__stat {
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hc-hero__stat:last-child { border-right: none; }

.hc-hero__stat-num {
  font-family: var(--hc-font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--hc-yellow);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hc-hero__stat-lab {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .hc-hero { padding: 56px 24px 48px; }
  .hc-hero__stat { padding: 0 16px; }
  .hc-hero__stat-num { font-size: 20px; }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.hc-section {
  padding: 64px 32px;
}

.hc-section__header {
  margin-bottom: 36px;
}

.hc-section__title {
  font-family: var(--hc-font-heading);
  font-size: 30px;
  font-weight: 900;
  color: var(--hc-text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.hc-section__sub {
  font-size: 14px;
  color: var(--hc-text-secondary);
  line-height: 1.6;
}

.hc-section--parchment { background: var(--hc-parchment); }
.hc-section--white     { background: var(--hc-white); }
.hc-section--green     { background: var(--hc-green); }
.hc-section--charcoal  { background: var(--hc-charcoal); }

.hc-section__inner {
  max-width: 1160px;
  margin: 0 auto;
}

/* ============================================================
   POST CARD GRID
   ============================================================ */
.hc-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 900px)  { .hc-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .hc-post-grid { grid-template-columns: 1fr; } }

.hc-post-card {
  background: var(--hc-white);
  border-radius: var(--hc-radius-md);
  border: var(--hc-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10,46,26,0.1);
}

.hc-post-card__thumb {
  height: 160px;
  background: var(--hc-green);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.hc-post-card:hover .hc-post-card__thumb img {
  transform: scale(1.04);
}

/* Fallback thumb when no image */
.hc-post-card__thumb--fallback {
  background: var(--hc-green);
}

.hc-post-card__body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hc-post-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.hc-post-card__title {
  font-family: var(--hc-font-heading);
  font-size: 15px;
  font-weight: 900;
  color: var(--hc-text-primary);
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hc-post-card__title a {
  color: inherit;
}

.hc-post-card__title a:hover {
  color: var(--hc-green-light);
}

.hc-post-card__excerpt {
  font-size: 13px;
  color: var(--hc-text-secondary);
  line-height: 1.55;
  flex: 1;
}

.hc-post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: var(--hc-border);
  font-size: 11px;
  color: var(--hc-text-muted);
}

/* Category pill colours */
.hc-cat--culture   { color: #0A2E1A; }
.hc-cat--recipes   { color: #8B0000; }
.hc-cat--fun-facts { color: #856404; }

/* ============================================================
   FEATURED / HERO POST (large card at top of blog)
   ============================================================ */
.hc-featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  border: var(--hc-border);
  overflow: hidden;
  margin-bottom: 36px;
}

.hc-featured-post__thumb {
  min-height: 320px;
  background: var(--hc-green);
  overflow: hidden;
}

.hc-featured-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-featured-post__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hc-featured-post__title {
  font-family: var(--hc-font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--hc-text-primary);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.hc-featured-post__excerpt {
  font-size: 14px;
  color: var(--hc-text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hc-featured-post { grid-template-columns: 1fr; }
  .hc-featured-post__thumb { min-height: 220px; }
  .hc-featured-post__body { padding: 24px 22px; }
}

/* ============================================================
   BRAND STORY STRIP
   ============================================================ */
.hc-story {
  background: var(--hc-green);
  padding: 72px 32px;
}

.hc-story__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

.hc-story__cart {
  flex-shrink: 0;
}

.hc-story__content {}

.hc-story__heading {
  font-family: var(--hc-font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--hc-white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.hc-story__body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 24px;
}

.hc-story__link {
  color: var(--hc-yellow);
  font-size: 13px;
  font-weight: 700;
}

.hc-story__link:hover { color: #fff; }

@media (max-width: 768px) {
  .hc-story__inner { flex-direction: column; gap: 32px; }
  .hc-story__heading { font-size: 26px; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.hc-newsletter {
  background: var(--hc-yellow);
  padding: 72px 32px;
  text-align: center;
}

.hc-newsletter__inner {
  max-width: 540px;
  margin: 0 auto;
}

.hc-newsletter__heading {
  font-family: var(--hc-font-heading);
  font-size: 30px;
  font-weight: 900;
  color: var(--hc-green);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.hc-newsletter__sub {
  font-size: 14px;
  color: var(--hc-green);
  opacity: 0.7;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hc-newsletter__form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}

.hc-newsletter__input {
  flex: 1;
  padding: 13px 16px;
  border-radius: var(--hc-radius-sm);
  border: none;
  font-family: var(--hc-font-body);
  font-size: 14px;
  background: var(--hc-white);
  color: var(--hc-black);
  outline: none;
}

.hc-newsletter__input::placeholder { color: #aaa; }

.hc-newsletter__input:focus {
  box-shadow: 0 0 0 3px rgba(10,46,26,0.2);
}

.hc-newsletter__btn {
  background: var(--hc-green);
  color: var(--hc-yellow);
  font-family: var(--hc-font-heading);
  font-size: 13px;
  font-weight: 900;
  padding: 13px 22px;
  border-radius: var(--hc-radius-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.hc-newsletter__btn:hover { opacity: 0.88; }

@media (max-width: 500px) {
  .hc-newsletter__form { flex-direction: column; }
  .hc-newsletter__btn { width: 100%; }
}

/* ============================================================
   SHOP TEASER
   ============================================================ */
.hc-shop-teaser {
  background: var(--hc-charcoal);
  padding: 64px 32px;
  text-align: center;
}

.hc-shop-teaser__badge {
  display: inline-block;
  background: var(--hc-yellow);
  color: var(--hc-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.hc-shop-teaser__heading {
  font-family: var(--hc-font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--hc-white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hc-shop-teaser__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.hc-footer {
  background: var(--hc-green);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 52px 32px 28px;
}

.hc-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.hc-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hc-footer__nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hc-footer__nav a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  padding: 4px 10px;
  border-radius: var(--hc-radius-sm);
  transition: color 0.18s;
}

.hc-footer__nav a:hover { color: var(--hc-yellow); }

.hc-footer__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hc-footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, background 0.18s;
}

.hc-footer__social-link:hover {
  border-color: var(--hc-yellow);
  background: rgba(245,200,0,0.08);
}

.hc-footer__social-link svg {
  width: 15px;
  height: 15px;
}

.hc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hc-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

.hc-footer__tagline {
  font-size: 12px;
  color: var(--hc-yellow);
  opacity: 0.75;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .hc-footer__top { flex-direction: column; }
  .hc-footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   SINGLE POST LAYOUT
   ============================================================ */
.hc-post-header {
  background: var(--hc-green);
  padding: 56px 32px 48px;
  text-align: center;
}

.hc-post-header__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc-yellow);
  margin-bottom: 14px;
  display: block;
}

.hc-post-header__title {
  font-family: var(--hc-font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--hc-white);
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 20px;
  letter-spacing: -0.03em;
}

.hc-post-header__meta {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.hc-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 52px 32px;
}

.hc-post-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--hc-text-primary);
  margin-bottom: 1.4rem;
}

.hc-post-content h2 {
  font-family: var(--hc-font-heading);
  font-size: 22px;
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hc-post-content h3 {
  font-family: var(--hc-font-heading);
  font-size: 18px;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.hc-post-content blockquote {
  border-left: 4px solid var(--hc-yellow);
  margin-left: 0;
  padding-left: 24px;
  font-style: italic;
  color: var(--hc-text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.hc-post-content a {
  color: var(--hc-green);
  text-decoration: underline;
  text-decoration-color: rgba(10,46,26,0.3);
}

/* ============================================================
   BLOG INDEX
   ============================================================ */
.hc-blog-header {
  background: var(--hc-green);
  padding: 52px 32px 44px;
  text-align: center;
}

.hc-blog-header__title {
  font-family: var(--hc-font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--hc-white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hc-blog-header__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}

.hc-pillar-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hc-pillar-tab {
  font-family: var(--hc-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(10,46,26,0.2);
  color: var(--hc-text-secondary);
  cursor: pointer;
  transition: all 0.18s;
  background: var(--hc-white);
  text-decoration: none;
}

.hc-pillar-tab:hover,
.hc-pillar-tab.is-active {
  background: var(--hc-green);
  color: var(--hc-yellow);
  border-color: var(--hc-green);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.hc-about-hero {
  background: var(--hc-green);
  padding: 72px 32px;
}

.hc-about-hero__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hc-about-hero__heading {
  font-family: var(--hc-font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--hc-white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.hc-about-hero__body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hc-about-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hc-about-hero__heading { font-size: 28px; }
}

/* ============================================================
   MISC / HELPERS
   ============================================================ */
.hc-divider {
  border: none;
  border-top: 1px solid rgba(10,46,26,0.08);
  margin: 48px 0;
}

.hc-tag-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(10,46,26,0.08);
  color: var(--hc-green);
}

.hc-read-more {
  color: var(--hc-green);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  transition: gap 0.15s;
}

.hc-read-more:hover { gap: 8px; }

.hc-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.hc-pagination a,
.hc-pagination span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hc-radius-sm);
  font-size: 13px;
  font-weight: 600;
  border: var(--hc-border);
  color: var(--hc-text-primary);
  transition: background 0.18s, color 0.18s;
}

.hc-pagination .current,
.hc-pagination a:hover {
  background: var(--hc-green);
  color: var(--hc-yellow);
  border-color: var(--hc-green);
}
