/* ==========================================================================
   ArtisanaHub - Elegant Editorial Magazine Style
   Arabic RTL | Warm Cream & Muted Gold Palette
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Cairo:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg: #FAF7F2;
  --bg-alt: #F2EBDF;
  --surface: #FFFFFF;
  --ink: #1C1A16;
  --ink-soft: #5A544A;
  --ink-mute: #8A8478;
  --gold: #A67628;
  --gold-bright: #C8952F;
  --gold-soft: #D4B87A;
  --line: #E5DCC9;
  --line-soft: #EFE8D9;

  /* Type */
  --font-display: 'Amiri', 'Times New Roman', serif;
  --font-body: 'Cairo', -apple-system, sans-serif;

  /* Layout */
  --max-w: 1240px;
  --radius: 2px;
  --gap: clamp(1rem, 3vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  direction: rtl;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: var(--bg);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 0;
  text-align: center;
}
.topbar span { opacity: 0.8; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(250, 247, 242, 0.95);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.nav-left, .nav-right {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
}
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

.nav-left a, .nav-right a {
  position: relative;
  padding-bottom: 2px;
}
.nav-left a:hover, .nav-right a:hover {
  color: var(--gold);
}
.nav-left a::after, .nav-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-left a:hover::after, .nav-right a:hover::after {
  width: 100%;
}

.brand {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.brand span {
  color: var(--gold);
  font-weight: 700;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--ink-mute);
  margin-top: 0.35rem;
  font-weight: 400;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #E8DFD3 0%, #D4C4A8 50%, #C9A96E 100%);
}
.hero-image::after {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.4);
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  position: relative;
  z-index: 2;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--bg);
  z-index: 2;
  pointer-events: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-gold {
  background: var(--gold);
  color: var(--surface);
}
.btn-gold:hover {
  background: var(--ink);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}
.section-head .kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.section-head .ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}
.section-head .ornament::before,
.section-head .ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.section-head .ornament span {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ==========================================================================
   CATEGORY PILLS
   ========================================================================== */
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}
.cat-pill {
  padding: 0.5rem 1.3rem;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ==========================================================================
   ARTICLE GRID
   ========================================================================== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.article-card {
  background: transparent;
  cursor: pointer;
}
.article-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.2rem;
  position: relative;
  background: linear-gradient(135deg, #EFE8D9 0%, #D4C4A8 100%);
}
.article-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.9);
}
.article-card:hover .thumb img {
  transform: scale(1.05);
}
.article-card .meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.article-card .meta .sep {
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.article-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.7rem;
  color: var(--ink);
  transition: color 0.25s ease;
}
.article-card:hover h3 {
  color: var(--gold);
}
.article-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.article-card .read-more {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* Featured (first card wider) */
.article-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}
.article-featured .thumb {
  aspect-ratio: 5/4;
  overflow: hidden;
}
.article-featured .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-featured h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  font-weight: 700;
}
.article-featured p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   QUOTE / EDITORIAL STRIP
   ========================================================================== */
.editorial {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  text-align: center;
}
.editorial-inner {
  max-width: 800px;
  margin: 0 auto;
}
.editorial .kicker {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.editorial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.5;
  font-weight: 400;
}
.editorial blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.3em;
  margin-left: 0.3rem;
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter {
  background: var(--bg-alt);
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.newsletter p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--surface);
}
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.3rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  color: var(--ink);
}
.newsletter-form input::placeholder {
  color: var(--ink-mute);
}
.newsletter-form button {
  padding: 1rem 1.8rem;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.25s ease;
}
.newsletter-form button:hover {
  background: var(--gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 4rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  margin-bottom: 1.3rem;
  font-weight: 600;
}
.footer .brand {
  color: var(--bg);
  text-align: right;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.footer .brand-sub {
  color: var(--ink-mute);
}
.footer p {
  color: #B8B0A0;
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 320px;
}
.footer ul {
  list-style: none;
}
.footer li {
  margin-bottom: 0.7rem;
}
.footer a {
  color: #C8C0B0;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}
.footer a:hover {
  color: var(--gold-soft);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #8A8478;
  flex-wrap: wrap;
  gap: 1rem;
}
.social {
  display: flex;
  gap: 1rem;
}
.social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border-radius: 50%;
  font-size: 0.9rem;
}
.social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ==========================================================================
   ARTICLE PAGE
   ========================================================================== */
.article-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}
.article-hero .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  font-weight: 700;
}
.article-hero .byline {
  color: var(--ink-mute);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article-cover {
  max-width: 1100px;
  margin: 2rem auto 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  font-size: 1.08rem;
  line-height: 2;
  color: #2A2620;
}
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  float: right;
  line-height: 0.9;
  margin-left: 0.5rem;
  margin-top: 0.3rem;
  color: var(--gold);
  font-weight: 700;
}
.article-body p {
  margin-bottom: 1.5rem;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin: 3rem 0 1.2rem;
  font-weight: 700;
  color: var(--ink);
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 2.2rem 0 1rem;
  font-weight: 700;
  color: var(--ink);
}
.article-body ul, .article-body ol {
  margin: 1.2rem 2rem 1.5rem;
}
.article-body li {
  margin-bottom: 0.6rem;
}
.article-body blockquote {
  border-right: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-soft);
  background: var(--bg-alt);
}

/* TOC */
.toc {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 1.8rem 2rem;
  margin: 2rem 0 3rem;
}
.toc h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.toc ol {
  margin: 0 1.5rem;
  color: var(--ink-soft);
}
.toc li { margin-bottom: 0.5rem; }
.toc a:hover { color: var(--gold); }

/* Affiliate Product Box */
.product-box {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product-box:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.product-box .product-img {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-box .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-box .product-info {
  padding: 1.5rem 1.8rem;
}
.product-box .product-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.6rem;
  padding: 0.2rem 0.6rem;
  background: var(--bg-alt);
  border: 1px solid var(--gold-soft);
}
.product-box h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  color: var(--ink);
}
.product-box .rating {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.product-box .rating span {
  color: var(--ink-mute);
  font-size: 0.82rem;
  margin-right: 0.5rem;
}
.product-box .product-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.product-box .product-cta {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: var(--surface);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: background 0.25s ease;
}
.product-box .product-cta:hover {
  background: var(--ink);
}

/* Tip callout */
.tip-box {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--line-soft) 100%);
  border-right: 4px solid var(--gold);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
}
.tip-box .tip-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.tip-box p {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

/* ==========================================================================
   ABOUT & CONTACT
   ========================================================================== */
.page-hero {
  padding: 5rem 0 3rem;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.about-grid img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 1.3rem;
  line-height: 1.25;
}
.about-content p {
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  border-color: var(--gold-soft);
}
.value-card .icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.value-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  line-height: 1.9;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.contact-form {
  background: var(--surface);
  padding: 2.5rem;
  border: 1px solid var(--line);
}
.form-group {
  margin-bottom: 1.3rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ==========================================================================
   ARTICLES LIST PAGE
   ========================================================================== */
.articles-list {
  padding: 3rem 0 5rem;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-label, .hero h1, .hero p, .hero .btn {
  animation: fadeUp 0.8s ease backwards;
}
.hero-label { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.25s; }
.hero p { animation-delay: 0.4s; }
.hero .btn { animation-delay: 0.55s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav-left, .nav-right {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .brand { font-size: 1.5rem; text-align: center; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image {
    order: -1;
    max-height: 400px;
    aspect-ratio: 4/3;
  }
  .article-featured {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .product-box {
    grid-template-columns: 1fr;
  }
  .product-box .product-img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 560px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    padding: 0.9rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .categories {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 1rem;
  }
  .cat-pill {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  padding: 5rem 2rem 2rem;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open {
  transform: translateX(0);
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
}
.overlay.open { display: block; }
