/* ============================================
   Potter's Hand Botanicals - Global Styles
   Est. 2020
   Color Palette: Gold, Diamond White,
   Eucalyptus Green, Deep Sage
   ============================================ */

/* --- CSS Variables --- */
:root {
  --gold: #C6A84B;
  --gold-light: #D4BC72;
  --gold-dark: #A8893A;
  --diamond-white: #F7F5F0;
  --diamond-white-pure: #FDFCFA;
  --eucalyptus: #7A9E7E;
  --eucalyptus-light: #9AB89D;
  --deep-sage: #2E5E4E;
  --deep-sage-dark: #1E3F34;
  --text-dark: #2C2C2C;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --border-light: #E5E0D5;
  --shadow-soft: 0 2px 20px rgba(46, 94, 78, 0.08);
  --shadow-medium: 0 4px 30px rgba(46, 94, 78, 0.12);
  --shadow-gold: 0 4px 20px rgba(198, 168, 75, 0.15);
  --transition: 0.3s ease;
  --max-width: 1200px;
  --serif: 'Playfair Display', 'Georgia', serif;
  --sans: 'Montserrat', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-y: scroll;
}

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background-color: var(--diamond-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* --- Screen reader only (visually hidden) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--deep-sage-dark);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

.section-label {
  font-family: var(--sans);
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--deep-sage), var(--deep-sage-dark));
  color: var(--diamond-white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--diamond-white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--diamond-white);
  box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--deep-sage), var(--deep-sage-dark));
  color: var(--diamond-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--deep-sage);
  border: 1.5px solid var(--deep-sage);
}

.btn-outline:hover {
  background: var(--deep-sage);
  color: var(--diamond-white);
  transform: translateY(-1px);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

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

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.logo-leaf {
  height: 55px;
  width: auto;
}

.logo-name {
  height: 55px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-medium);
  position: relative;
  padding-bottom: 2px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--deep-sage);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-sage);
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep-sage-dark) 0%, var(--deep-sage) 50%, var(--eucalyptus) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('images/image1.jpg') center/cover no-repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  padding: 8rem 2rem 7rem;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  max-width: 450px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--diamond-white);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero .hero-est {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(247, 245, 240, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

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

.hero .btn {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-leaf {
  max-width: 200px;
  margin: 0 auto 0.25rem;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.1s;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUpCentered 0.8s ease forwards 1.1s;
}

.scroll-indicator span {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold-light);
  animation: scrollPulse 2s ease infinite;
}

/* --- About Section --- */
.about {
  padding: 6rem 0;
  background: var(--diamond-white-pure);
}

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

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 0.5rem;
}

.about-text p {
  font-size: 1.05rem;
}

/* --- Features / What We Offer --- */
.features {
  padding: 6rem 0;
  background: var(--diamond-white);
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--diamond-white-pure);
  border-radius: 4px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-light);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep-sage), var(--eucalyptus));
  border-radius: 50%;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--diamond-white);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.95rem;
  flex: 1;
}

.feature-card .btn-outline {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
}

/* --- Blog / Articles Preview --- */
.blog-preview {
  padding: 6rem 0;
  background: var(--diamond-white-pure);
}

.blog-preview-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-card-meta {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Blog preview grid (homepage) */
.blog-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.blog-preview-card {
  display: flex;
  flex-direction: column;
  background: var(--diamond-white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-light);
  color: inherit;
}

.blog-preview-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-preview-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-preview-card:hover .blog-preview-card-image img {
  transform: scale(1.03);
}

.blog-preview-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-preview-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.blog-preview-card-body p {
  font-size: 0.95rem;
  flex: 1;
}

.blog-read-more {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--deep-sage);
  transition: color var(--transition);
}

.blog-preview-card:hover .blog-read-more,
.blog-list-card:hover .blog-read-more {
  color: var(--gold);
}

.blog-read-more-disabled {
  color: var(--text-light);
}

/* Placeholder image for coming soon cards */
.blog-placeholder-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(46, 94, 78, 0.08), rgba(122, 158, 126, 0.08));
}

.blog-placeholder-image svg {
  width: 48px;
  height: 48px;
  color: var(--eucalyptus);
}

.blog-placeholder-image span {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

/* --- Blog Listing Page --- */
.blog-listing {
  padding: 4rem 0;
  background: var(--diamond-white);
}

.blog-list-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--diamond-white-pure);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  margin-bottom: 2rem;
}

.blog-list-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-light);
  color: inherit;
}

.blog-list-image {
  height: 100%;
  min-height: 240px;
  overflow: hidden;
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-list-card:hover .blog-list-image img {
  transform: scale(1.03);
}

.blog-list-content {
  padding: 2rem 2.5rem 2rem 0;
}

.blog-list-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-list-content p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.blog-coming-soon {
  opacity: 0.6;
  pointer-events: none;
}

.blog-list-card .blog-placeholder-image {
  height: 100%;
  min-height: 240px;
}

/* --- Newsletter --- */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--deep-sage-dark), var(--deep-sage));
  text-align: center;
}

.newsletter h2 {
  color: var(--diamond-white);
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: rgba(247, 245, 240, 0.7);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep-sage-dark);
  font-weight: 700;
}

.social-btn:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
  color: var(--deep-sage-dark);
}

/* --- Footer --- */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--deep-sage-dark);
  color: rgba(247, 245, 240, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-name {
  color: var(--diamond-white);
  margin-bottom: 0.25rem;
}

.footer-brand .logo-tagline {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(247, 245, 240, 0.5);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(247, 245, 240, 0.5);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(247, 245, 240, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 245, 240, 0.15);
  border-radius: 50%;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(198, 168, 75, 0.1);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(247, 245, 240, 0.5);
}

.footer-social a:hover svg {
  fill: var(--gold-light);
}

/* --- Article Page Styles --- */
.article-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--deep-sage-dark) 0%, var(--deep-sage) 100%);
  text-align: center;
}

.article-hero .section-label {
  color: var(--gold-light);
}

.article-hero h1 {
  color: var(--diamond-white);
  font-size: 2.8rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.article-hero .article-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--eucalyptus-light);
}

.article-meta {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.5);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-content > p:first-of-type {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.9;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.article-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-light);
}

.article-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--deep-sage);
}

.article-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-content ul {
  list-style: none;
  margin-left: 0;
}

.article-content ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-medium);
  font-size: 1.05rem;
}

.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--eucalyptus);
  border-radius: 50%;
}

.article-content blockquote,
.article-callout {
  background: linear-gradient(135deg, rgba(46, 94, 78, 0.06), rgba(122, 158, 126, 0.06));
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--deep-sage);
}

.article-image {
  margin: 2.5rem 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.article-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.article-image figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  background: var(--diamond-white);
  font-style: italic;
}

/* Mix recipe cards */
.mix-card {
  background: var(--diamond-white-pure);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
}

.mix-card h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}

.mix-card ul {
  margin: 0;
}

.mix-card ul li {
  font-size: 0.95rem;
}

.mix-card .mix-goal {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-weight: 600;
  color: var(--deep-sage);
  font-style: italic;
}

/* Article link styling */
.article-content a {
  color: var(--deep-sage);
  border-bottom: 1px solid var(--gold-light);
  transition: all var(--transition);
}

.article-content a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Takeaway box */
.takeaway-box {
  background: linear-gradient(135deg, var(--deep-sage), var(--deep-sage-dark));
  color: var(--diamond-white);
  padding: 2.5rem;
  border-radius: 4px;
  margin: 3rem 0;
  text-align: center;
}

.takeaway-box h3 {
  color: var(--gold-light);
  margin-bottom: 1rem;
  margin-top: 0;
}

.takeaway-box p {
  color: rgba(247, 245, 240, 0.85);
  font-size: 1.1rem;
  margin: 0;
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpCentered {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 968px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }

  .hero h1 { font-size: 2.8rem; }

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

  .about-image { order: -1; }
  .about-image img { height: 350px; }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-card {
    grid-template-columns: 1fr;
  }

  .blog-list-content {
    padding: 1.5rem 2rem 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .article-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--diamond-white-pure);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-content { padding: 7rem 1.5rem 4rem; }

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

  .article-content {
    padding: 3rem 1.5rem;
  }
}
