/* Limetera.shop - Unique editorial organic design 2026 */
/* Palette: Warm Sand + Clay + Deep Sage Graphite */
:root {
  --bg: #F7F3ED;
  --bg-soft: #EFE9DF;
  --bg-card: #FFFcf7;
  --text: #1F2A24;
  --text-soft: #4A554C;
  --accent: #C17A52;
  --accent-hover: #A86540;
  --sage: #5E6F5A;
  --sage-dark: #3D4A3A;
  --border: #D8CFC2;
  --shadow: 0 8px 32px rgba(31, 42, 36, 0.07);
  --shadow-soft: 0 4px 16px rgba(31, 42, 36, 0.05);
  --radius: 18px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --gap: 2.5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo span {
  display: block;
  font-size: 0.68rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.15rem;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-main a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  padding: 0.25rem 0;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-main a:hover {
  color: var(--text);
}

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

.nav-main a.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--sage-dark);
  transition: 0.3s;
}

.hero {
  position: relative;
  padding: 5.5rem 1.5rem 4.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: linear-gradient(145deg, var(--bg-soft) 0%, transparent 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--sage-dark);
  margin-bottom: 1.4rem;
  letter-spacing: -0.025em;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 34ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.hero-cta:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shape {
  width: 100%;
  height: 100%;
  background: var(--sage);
  border-radius: 32% 68% 58% 42% / 48% 38% 62% 52%;
  opacity: 0.12;
  position: absolute;
}

.hero-shape-2 {
  width: 70%;
  height: 70%;
  background: var(--accent);
  border-radius: 58% 42% 38% 62% / 42% 58% 42% 58%;
  opacity: 0.15;
  position: absolute;
  top: 15%;
  right: 5%;
}

.hero-emoji {
  font-size: 5.5rem;
  position: relative;
  z-index: 2;
  filter: grayscale(0.15);
}

.section {
  padding: 4.5rem 1.5rem;
}

.section-alt {
  background: var(--bg-soft);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2.8rem;
  max-width: 38rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--sage-dark);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.6rem;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-card.large {
  grid-column: span 7;
}

.article-card.medium {
  grid-column: span 5;
}

.article-card.small {
  grid-column: span 4;
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.article-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--sage-dark);
  margin-bottom: 0.85rem;
}

.article-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.3rem;
}

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-link::after {
  content: "→";
  transition: transform 0.25s;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.quote-block {
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--sage-dark);
  color: #F7F3ED;
}

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

.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 1.4rem;
}

.quote-block cite {
  font-size: 0.9rem;
  font-style: normal;
  opacity: 0.75;
  letter-spacing: 0.04em;
}

.author-teaser {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.author-visual {
  background: var(--bg-soft);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  border: 1px solid var(--border);
}

.author-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.author-content p {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: #fff;
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  margin: 0 1.5rem 4rem;
  max-width: calc(var(--max) + 3rem);
  margin-left: auto;
  margin-right: auto;
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.6rem;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.btn-light {
  display: inline-block;
  background: #fff;
  color: var(--sage-dark);
  font-weight: 600;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  color: var(--sage-dark);
}

.article-hero {
  padding: 4rem 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

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

.article-meta {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.article-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1.2;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
}

.article-lead {
  font-size: 1.2rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--sage-dark);
  margin: 2.4rem 0 1rem;
}

.article-body h3 {
  font-size: 1.2rem;
  color: var(--sage);
  margin: 1.8rem 0 0.7rem;
}

.article-body p {
  margin-bottom: 1.3rem;
  color: var(--text);
}

.article-body ul, .article-body ol {
  margin: 1.2rem 0 1.5rem 1.4rem;
}

.article-body li {
  margin-bottom: 0.55rem;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.8rem 0 0.8rem 1.4rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--sage-dark);
  font-style: italic;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sage);
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.address-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.address-box strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.25s;
}

.btn-submit:hover {
  background: var(--accent-hover);
}

.thanks-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1.5rem;
}

.thanks-box .emoji {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.thanks-box h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.thanks-box p {
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.legal-body h1 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
}

.legal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--sage-dark);
  margin: 2.2rem 0 0.9rem;
}

.legal-body p, .legal-body li {
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-body ul {
  margin-left: 1.3rem;
  margin-bottom: 1.3rem;
}

.site-footer {
  background: var(--sage-dark);
  color: #E8E4DC;
  padding: 3.5rem 1.5rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: #F7F3ED;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.8;
  max-width: 28ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-col a {
  display: block;
  color: #E8E4DC;
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
  opacity: 0.85;
}

.footer-col a:hover {
  opacity: 1;
  color: #fff;
}

.footer-address {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: #E8E4DC;
  margin-left: 1.2rem;
}

.footer-disclaimer {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  font-size: 0.8rem;
  opacity: 0.55;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    height: 260px;
    order: -1;
  }
  .articles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-card.large,
  .article-card.medium,
  .article-card.small {
    grid-column: span 1;
  }
  .author-teaser {
    grid-template-columns: 1fr;
  }
  .author-visual {
    height: 220px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  html { font-size: 16px; }
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.2rem 1.5rem 1.5rem;
    gap: 0.8rem;
  }
  .nav-main.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom a {
    margin: 0 0.6rem;
  }
  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }
  .section {
    padding: 3.2rem 1.25rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
