/* ============================================
   NICKELS BOATS — Main Stylesheet
   Nautical Classic: Navy + White + Gold Yellow
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:       #0D1F3C;
  --navy-dark:  #07152A;
  --navy-mid:   #152848;
  --gold:       #F5C518;
  --gold-dark:  #D4A800;
  --gold-light: #FDE06A;
  --white:      #FFFFFF;
  --off-white:  #F7F5EF;
  --cream:      #F0EDE4;
  --rope:       #C8A96E;
  --text-dark:  #1A1A2E;
  --text-mid:   #3A4A60;
  --text-light: #7A8DA0;
  --border:     #D6DDE8;
  --shadow:     0 4px 24px rgba(13, 31, 60, 0.10);
  --shadow-lg:  0 12px 48px rgba(13, 31, 60, 0.18);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Helvetica, sans-serif;

  --radius:   6px;
  --radius-lg: 12px;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--navy);
}

ul, ol { padding-left: 1.4em; }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 110px 0; }

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

.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover { transform: translateY(-2px); }

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 3px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-label::before { max-width: 40px; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
}

/* --- Divider --- */
.anchor-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 48px;
  max-width: 200px;
}
.anchor-divider::before,
.anchor-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.anchor-divider span {
  font-size: 20px;
  color: var(--gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.transparent {
  background: transparent;
}

#site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(13, 31, 60, 0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

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

.logo-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--gold);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after {
  width: 100%;
}

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  background: var(--navy-dark);
  padding: 20px 32px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.06); }

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.mobile-nav a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url('https://images.pexels.com/photos/1118873/pexels-photo-1118873.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 21, 42, 0.88) 0%,
    rgba(13, 31, 60, 0.70) 50%,
    rgba(7, 21, 42, 0.82) 100%
  );
}

.hero-rope-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 20px,
    var(--navy) 20px,
    var(--navy) 24px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow span { opacity: 0.5; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  cursor: pointer;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245, 197, 24, 0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Hero stats strip */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 21, 42, 0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(245, 197, 24, 0.2);
  z-index: 2;
}

.hero-stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   FEATURED POSTS SECTION
   ============================================ */
.featured-section {
  background: var(--off-white);
  padding: 90px 0;
}

.featured-header {
  margin-bottom: 52px;
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 28px;
}

/* Main featured card */
.post-card-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.post-card-main:hover { transform: translateY(-4px); }

.post-card-main-img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-card-main-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(to top, rgba(7,21,42,0.92) 0%, rgba(7,21,42,0.3) 60%, transparent 100%);
}

.post-card-main-body {
  position: relative;
  z-index: 2;
  padding: 36px;
}

.post-card-main-body .tag { margin-bottom: 14px; }

.post-card-main-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.post-card-main-title a { color: inherit; }
.post-card-main-title a:hover { color: var(--gold-light); }

.post-card-main-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Side post stack */
.post-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-card-side {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.post-card-side:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.post-card-side-img-wrap {
  height: 100%;
  overflow: hidden;
}

.post-card-side-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card-side:hover .post-card-side-img-wrap img { transform: scale(1.06); }

.post-card-side-body {
  padding: 18px 20px;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-card-side-body .tag { margin-bottom: 8px; }

.post-card-side-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-side-title a { color: inherit; }
.post-card-side-title a:hover { color: var(--gold-dark); }

.post-card-side-meta {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   INTRO / ABOUT TEASER
   ============================================ */
.intro-section {
  background: var(--white);
  padding: 100px 0;
}

.intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.intro-media {
  position: relative;
}

.intro-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.intro-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.4);
  text-align: center;
}

.intro-img-badge span:first-child {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.intro-img-badge span:last-child {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
}

.intro-text {}

.intro-text .section-label { justify-content: flex-start; }
.intro-text .section-label::after { display: none; }

.intro-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.intro-title em { color: var(--gold-dark); font-style: italic; }

.intro-body {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.intro-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.intro-features li::before {
  content: '⚓';
  font-size: 16px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ============================================
   CATEGORIES STRIP
   ============================================ */
.categories-section {
  background: var(--navy);
  padding: 70px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.category-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}

.category-card:hover {
  background: rgba(245, 197, 24, 0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.category-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.category-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}

.category-count {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* ============================================
   LATEST POSTS GRID
   ============================================ */
.posts-section {
  background: var(--off-white);
  padding: 90px 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 52px;
}

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

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-img img { transform: scale(1.05); }

.post-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.post-card-body .tag { margin-bottom: 12px; }

.post-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}

.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--gold-dark); }

.post-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 20px;
}

.post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.post-card-meta {
  font-size: 12px;
  color: var(--text-light);
}

.post-card-read {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.post-card-read:hover { color: var(--navy); }

.posts-footer { margin-top: 52px; text-align: center; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://images.pexels.com/photos/2249812/pexels-photo-2249812.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.cta-rope-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 20px,
    var(--navy) 20px,
    var(--navy) 24px
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-title em { color: var(--gold); font-style: italic; }

.cta-subtitle {
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
}

.footer-main {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 52px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
}

.footer-logo-tagline {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.footer-about {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-newsletter-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-form input {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}

.footer-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-form input:focus { border-color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================
   SINGLE POST
   ============================================ */
.single-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.single-hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.single-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.single-hero .tag { margin-bottom: 16px; }

.single-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.single-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}

.single-meta-sep { opacity: 0.3; }

.single-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.single-content {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text-dark);
}

.single-content h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--navy);
  margin: 2em 0 0.6em;
}

.single-content h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--navy);
  margin: 1.8em 0 0.5em;
}

.single-content p { margin-bottom: 1.4em; }

.single-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 2em 0;
}

.single-content blockquote {
  margin: 2em 0;
  padding: 20px 28px;
  border-left: 4px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy-mid);
}

.single-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}

.single-content a:hover { text-decoration-color: var(--gold-dark); }

/* ============================================
   ARCHIVE / BLOG PAGE
   ============================================ */
.archive-header {
  background: var(--navy);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
}

.archive-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 16px,
    transparent 16px,
    transparent 20px
  );
}

.archive-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.archive-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin: 0;
}

.archive-body { padding: 72px 0; background: var(--off-white); }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-header {
  background: var(--navy);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-header-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url('https://images.pexels.com/photos/273886/pexels-photo-273886.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.about-header-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.about-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.about-header p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}

.about-content { padding: 90px 0; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.about-text p { color: var(--text-mid); margin-bottom: 1.2em; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition);
}

.value-card:hover { transform: translateY(-4px); }

.value-icon { font-size: 2.4rem; margin-bottom: 14px; }

.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-header {
  background: var(--navy);
  padding: 120px 0 80px;
  text-align: center;
}

.contact-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 14px;
}

.contact-header p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin: 0; }

.contact-body { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 64px;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p { color: var(--text-mid); margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}

.contact-detail-text span { font-size: 0.95rem; color: var(--text-mid); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-field textarea { resize: vertical; min-height: 140px; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ============================================
   COMMENTS
   ============================================ */
.comments-area {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.comments-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.comment-list { list-style: none; padding: 0; margin: 0 0 48px; }

.comment { padding: 24px 0; border-bottom: 1px solid var(--border); }

.comment-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }

.comment-author-name { font-weight: 700; color: var(--navy); }

.comment-date { font-size: 13px; color: var(--text-light); }

.comment-content { font-size: 0.95rem; color: var(--text-mid); }

.comment-respond h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
}

#commentform input,
#commentform textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}

#commentform input:focus,
#commentform textarea:focus { border-color: var(--gold); }

#commentform textarea { min-height: 130px; resize: vertical; }

#commentform input[type="submit"] {
  width: auto;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}

#commentform input[type="submit"]:hover { background: var(--gold-dark); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr; }
  .post-card-main { min-height: 400px; }
  .intro-inner { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2.4rem; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }

  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .intro-img-badge { right: 16px; bottom: -20px; }

  .posts-grid { grid-template-columns: 1fr 1fr; }
  .archive-grid { grid-template-columns: 1fr 1fr; }

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

  .contact-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .posts-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
