/**
 * Luca Caruana — Site Styles
 * Pair with Elementor templates in wordpress/elementor/
 */

:root {
  --tc:   #C04A1A;
  --ink:  #1C1C1C;
  --esp:  #2C1A0E;
  --pch:  #F0E6D6;
  --och:  #E8C97A;
  --lbg:  #FDF6F0;
  --wht:  #FFFFFF;
  --gry:  #888888;
  --brd:  #E8E0D8;
}

/* ── Elementor resets (keep HTML widgets pixel-accurate) ── */
.luca-page .elementor-section-wrap > .elementor-section,
.luca-header .elementor-section-wrap > .elementor-section,
.luca-footer .elementor-section-wrap > .elementor-section {
  margin-bottom: 0;
}

.luca-page .elementor-widget-html,
.luca-header .elementor-widget-html,
.luca-footer .elementor-widget-html {
  margin-bottom: 0;
}

.luca-page .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.luca-header .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.luca-footer .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0;
}

.luca-page,
.luca-header,
.luca-footer {
  font-family: 'Source Serif 4', serif;
  color: var(--esp);
  -webkit-font-smoothing: antialiased;
}

.luca-page {
  background: var(--wht);
}

html {
  scroll-behavior: smooth;
}

/* ── NAV ── */
.luca-header nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--brd);
  padding: 0 2.5rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.luca-header .nav-mark {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--tc);
  display: flex;
  align-items: center;
  justify-content: center;
}

.luca-header .nav-mark span {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--pch);
}

.luca-header .nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}

.luca-header .nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.luca-header .nav-links a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--esp);
  text-decoration: none;
  transition: color 0.2s;
}

.luca-header .nav-links a:hover {
  color: var(--tc);
}

.luca-header .nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tc);
  text-decoration: none;
}

.luca-header .nav-back::before {
  content: '←';
  font-size: 14px;
}

/* ── HERO ── */
.luca-page .hero {
  padding: 130px 2.5rem 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 90vh;
}

.luca-page .hero-left {
  animation: luca-fadeUp 0.8s ease both;
}

.luca-page .hero-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tc);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.luca-page .hero-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--tc);
}

.luca-page .hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.luca-page .hero-headline em {
  font-style: italic;
  color: var(--tc);
}

.luca-page .hero-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--esp);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 460px;
}

.luca-page .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.luca-page .btn-primary {
  background: var(--tc);
  color: var(--wht);
  padding: 13px 28px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.luca-page .btn-primary:hover {
  background: var(--esp);
  transform: translateY(-1px);
  color: var(--wht);
}

.luca-page .btn-secondary {
  color: var(--tc);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--tc);
  padding-bottom: 2px;
  letter-spacing: 0.03em;
  transition: color 0.2s, border-color 0.2s;
}

.luca-page .btn-secondary:hover {
  color: var(--esp);
  border-color: var(--esp);
}

.luca-page .hero-right {
  animation: luca-fadeUp 0.8s 0.2s ease both;
  position: relative;
}

.luca-page .hero-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.luca-page .hero-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
}

.luca-page .hero-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: var(--tc);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.15;
}

.luca-page .hero-accent-2 {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 50px;
  height: 50px;
  border: 2px solid var(--och);
  border-radius: 4px;
  z-index: -1;
}

.luca-page .hero-credentials {
  display: flex;
  gap: 20px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.luca-page .cred-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gry);
}

.luca-page .cred-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tc);
  flex-shrink: 0;
}

/* ── TICKER ── */
.luca-page .ticker {
  background: var(--ink);
  padding: 10px 0;
  overflow: hidden;
  border-top: 1px solid #333;
}

.luca-page .ticker-inner {
  display: flex;
  gap: 3rem;
  animation: luca-ticker 25s linear infinite;
  width: max-content;
}

.luca-page .ticker-item {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pch);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.luca-page .ticker-sep {
  color: var(--tc);
  font-size: 14px;
}

@keyframes luca-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.luca-page .about {
  background: var(--lbg);
  padding: 90px 2.5rem;
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
}

.luca-page .about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.luca-page .about-left {
  position: sticky;
  top: 80px;
}

.luca-page .section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tc);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.luca-page .section-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--tc);
}

.luca-page .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.luca-page .about-tagline {
  font-size: 15px;
  line-height: 1.8;
  color: var(--esp);
  font-style: italic;
  font-weight: 300;
  border-left: 3px solid var(--tc);
  padding-left: 1rem;
}

.luca-page .about-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--esp);
  margin-bottom: 1.1rem;
  font-weight: 300;
}

.luca-page .about-body p strong {
  font-weight: 400;
  color: var(--ink);
}

.luca-page .about-photo-wrap {
  margin-top: 2rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--brd);
}

.luca-page .about-photo-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.luca-page .about-photo-caption {
  font-size: 10px;
  color: var(--gry);
  padding: 8px 12px;
  background: var(--lbg);
  font-style: italic;
  margin: 0;
}

.luca-page .ventures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 2.5rem;
}

.luca-page .venture-card {
  background: var(--wht);
  border: 1px solid var(--brd);
  border-radius: 6px;
  padding: 1.25rem;
  border-top: 3px solid var(--tc);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}

.luca-page .venture-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 26, 14, 0.08);
}

.luca-page .venture-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 5px;
}

.luca-page .venture-desc {
  font-size: 12px;
  color: var(--gry);
  line-height: 1.6;
}

.luca-page .venture-link {
  font-size: 10px;
  color: var(--tc);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  display: block;
}

/* ── PILLARS ── */
.luca-page .pillars {
  padding: 70px 2.5rem;
  background: var(--ink);
  border-top: 3px solid var(--tc);
}

.luca-page .pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.luca-page .pillar {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s;
}

.luca-page .pillar:last-child {
  border-right: none;
}

.luca-page .pillar:hover {
  background: rgba(255, 255, 255, 0.03);
}

.luca-page .pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  color: var(--tc);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.luca-page .pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--pch);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.luca-page .pillar-body {
  font-size: 13px;
  color: #9a8878;
  line-height: 1.75;
  font-weight: 300;
}

.luca-page .pillar-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tc);
  border: 1px solid rgba(192, 74, 26, 0.4);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── AI SECTION ── */
.luca-page .ai-section {
  padding: 90px 2.5rem;
  background: var(--esp);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.luca-page .ai-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.luca-page .ai-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tc);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.luca-page .ai-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--tc);
}

.luca-page .ai-headline {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--pch);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.luca-page .ai-headline em {
  font-style: italic;
  color: var(--tc);
}

.luca-page .ai-body {
  font-size: 15px;
  color: #b0998a;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.luca-page .ai-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 2rem;
}

.luca-page .ai-stat {
  border-left: 2px solid var(--tc);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 4px 4px 0;
}

.luca-page .ai-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--tc);
  line-height: 1;
  margin-bottom: 4px;
}

.luca-page .ai-stat-l {
  font-size: 11px;
  color: #9a8878;
  line-height: 1.5;
}

.luca-page .ai-right {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid var(--tc);
}

.luca-page .ai-article-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--tc);
  margin-bottom: 1rem;
}

.luca-page .ai-article-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--pch);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.luca-page .ai-article-excerpt {
  font-size: 13px;
  color: #9a8878;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.luca-page .ai-article-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.luca-page .ai-article-stat {
  text-align: center;
}

.luca-page .ai-article-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--tc);
}

.luca-page .ai-article-stat-l {
  font-size: 9px;
  color: #9a8878;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.luca-page .ai-read-btn {
  display: inline-block;
  padding: 11px 22px;
  background: var(--tc);
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
}

.luca-page .ai-read-btn:hover {
  background: #a03a12;
  color: white;
}

/* ── BOOK SECTION ── */
.luca-page .book-section {
  padding: 90px 2.5rem;
  background: var(--pch);
  border-top: 1px solid var(--brd);
}

.luca-page .book-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.luca-page .book-visual {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--ink);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 12px 32px rgba(44, 26, 14, 0.25);
}

.luca-page .book-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tc);
}

.luca-page .book-visual-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--tc);
  margin-bottom: 2rem;
}

.luca-page .book-visual-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--pch);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.luca-page .book-visual-rule {
  width: 40px;
  height: 2px;
  background: var(--tc);
  margin: 0 auto 1rem;
}

.luca-page .book-visual-sub {
  font-size: 11px;
  color: #888;
  text-align: center;
  line-height: 1.6;
  font-style: italic;
}

.luca-page .book-visual-author {
  font-size: 11px;
  color: var(--pch);
  margin-top: auto;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.luca-page .book-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tc);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.luca-page .book-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--tc);
}

.luca-page .book-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.luca-page .book-subtitle {
  font-size: 15px;
  color: var(--tc);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.luca-page .book-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--esp);
  margin-bottom: 1rem;
  font-weight: 300;
}

.luca-page .book-body p strong {
  font-weight: 400;
  color: var(--ink);
}

.luca-page .book-pull {
  border-left: 3px solid var(--tc);
  padding: 0.75rem 1.25rem;
  background: rgba(192, 74, 26, 0.06);
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}

.luca-page .book-pull p {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--esp);
  margin: 0 !important;
  line-height: 1.6;
}

.luca-page .book-coming {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  font-size: 12px;
  color: var(--gry);
  background: white;
  padding: 10px 18px;
  border-radius: 3px;
  border: 1px solid var(--brd);
}

.luca-page .book-coming span:first-child {
  color: var(--tc);
  font-weight: 500;
}

/* ── WRITING ── */
.luca-page .writing {
  padding: 90px 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.luca-page .writing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--brd);
  padding-bottom: 1.5rem;
}

.luca-page .writing-header .section-title {
  font-size: 32px;
  margin-bottom: 0;
}

.luca-page .view-all {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tc);
  text-decoration: none;
  border-bottom: 1px solid var(--tc);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.luca-page .view-all:hover {
  color: var(--esp);
  border-color: var(--esp);
}

.luca-page .articles-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}

.luca-page .article-card {
  background: var(--wht);
  padding: 2rem;
  border: 1px solid var(--brd);
  text-decoration: none;
  display: block;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.luca-page .article-card:hover {
  background: var(--lbg);
}

.luca-page .article-card.featured {
  grid-row: span 2;
  border-left: 4px solid var(--tc);
}

.luca-page .article-card.featured .art-headline {
  font-size: 26px;
  line-height: 1.2;
}

.luca-page .art-kicker {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--tc);
  margin-bottom: 0.6rem;
}

.luca-page .art-headline {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.luca-page .art-excerpt {
  font-size: 13px;
  color: var(--gry);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 300;
}

.luca-page .art-meta {
  font-size: 10px;
  color: var(--gry);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.luca-page .art-meta-dot {
  color: var(--tc);
}

.luca-page .art-read {
  font-size: 10px;
  color: var(--tc);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.luca-page .art-read::after {
  content: '→';
  transition: transform 0.2s;
}

.luca-page .article-card:hover .art-read::after {
  transform: translateX(4px);
}

/* ── EMAIL STRIP ── */
.luca-page .email-strip {
  background: var(--ink);
  padding: 70px 2.5rem;
  text-align: center;
}

.luca-page .email-inner {
  max-width: 560px;
  margin: 0 auto;
}

.luca-page .email-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tc);
  margin-bottom: 1rem;
}

.luca-page .email-headline {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--pch);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.luca-page .email-sub {
  font-size: 14px;
  color: #888;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.luca-page .email-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

.luca-page .email-input {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  color: var(--pch);
  font-size: 13px;
  font-family: 'Source Serif 4', serif;
  outline: none;
  border-radius: 3px 0 0 3px;
}

.luca-page .email-input::placeholder {
  color: #666;
}

.luca-page .email-btn {
  padding: 13px 22px;
  background: var(--tc);
  color: var(--wht);
  border: none;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Source Serif 4', serif;
  border-radius: 0 3px 3px 0;
  transition: background 0.2s;
}

.luca-page .email-btn:hover {
  background: #a03a12;
}

.luca-page .email-note {
  font-size: 10px;
  color: #555;
  margin-top: 10px;
}

/* ── FOOTER ── */
.luca-footer .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.luca-footer .nav-mark {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--tc);
  display: flex;
  align-items: center;
  justify-content: center;
}

.luca-footer .nav-mark span {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--pch);
}

.luca-footer .nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  margin-left: 10px;
}

.luca-footer footer {
  background: var(--esp);
  padding: 50px 2.5rem 30px;
  border-top: 3px solid var(--tc);
}

.luca-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.luca-footer .footer-brand .nav-name {
  color: var(--pch);
}

.luca-footer .footer-tagline {
  font-size: 13px;
  color: #9a8070;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.luca-footer .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.luca-footer .social-link {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pch);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.luca-footer .social-link:hover {
  border-color: var(--tc);
  background: rgba(192, 74, 26, 0.15);
  color: var(--pch);
}

.luca-footer .footer-col-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tc);
  margin-bottom: 1.2rem;
}

.luca-footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.luca-footer .footer-links li {
  margin-bottom: 0.6rem;
}

.luca-footer .footer-links a {
  font-size: 13px;
  color: #9a8070;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.luca-footer .footer-links a:hover {
  color: var(--pch);
}

.luca-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.luca-footer .footer-bottom p {
  font-size: 11px;
  color: #5a4a40;
  margin: 0;
}

/* ── ANIMATIONS ── */
@keyframes luca-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .luca-page .pillars-inner { grid-template-columns: 1fr; }
  .luca-page .pillar { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .luca-page .ai-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .luca-page .book-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .luca-page .book-visual { max-width: 280px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .luca-page .hero { grid-template-columns: 1fr; gap: 3rem; min-height: auto; padding-top: 100px; }
  .luca-page .hero-right { display: none; }
  .luca-page .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .luca-page .about-left { position: static; }
  .luca-page .articles-grid { grid-template-columns: 1fr; }
  .luca-page .article-card.featured { grid-row: span 1; }
  .luca-footer .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .luca-page .ventures { grid-template-columns: 1fr; }
  .luca-header .nav-links { display: none; }
  .elementor-section.luca-nav .nav-links-col { display: none !important; }

  /* HTML nav widget — keep single row on mobile */
  .luca-header nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 1.25rem;
    height: 56px;
  }

  .luca-header .nav-logo {
    flex-shrink: 0;
  }

  .luca-header .nav-back {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* ══════════════════════════════════════════════════════
   ELEMENTOR EDITABLE — widget & layout overrides
   ══════════════════════════════════════════════════════ */

/* Global widget resets */
.luca-page .elementor-widget-heading,
.luca-page .elementor-widget-text-editor,
.luca-page .elementor-widget-button,
.luca-page .elementor-widget-image,
.luca-page .elementor-widget-icon-list,
.luca-header .elementor-widget-heading,
.luca-header .elementor-widget-button,
.luca-header .elementor-widget-icon-list,
.luca-footer .elementor-widget-heading,
.luca-footer .elementor-widget-text-editor,
.luca-footer .elementor-widget-icon-list,
.luca-footer .elementor-widget-social-icons {
  margin-bottom: 0;
}

.luca-page .elementor-inner-section,
.luca-header .elementor-inner-section,
.luca-footer .elementor-inner-section {
  margin-bottom: 0;
}

/* ── Fixed header ── */
.elementor-section.luca-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--brd);
}

.elementor-section.luca-nav > .elementor-container {
  max-width: 100%;
  min-height: 56px;
  padding: 0 2.5rem;
  align-items: center;
}

.elementor-section.luca-nav .nav-logo-wrap > .elementor-container {
  align-items: center;
  gap: 10px;
}

.elementor-section.luca-nav .nav-mark .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--pch);
  line-height: 32px;
  text-align: center;
}

.elementor-section.luca-nav .nav-mark .elementor-widget-container {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--tc);
}

.elementor-section.luca-nav .nav-name .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}

.elementor-section.luca-nav .nav-links .elementor-icon-list-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
}

.elementor-section.luca-nav .nav-links .elementor-icon-list-icon {
  display: none;
}

.elementor-section.luca-nav .nav-links .elementor-icon-list-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--esp);
  transition: color 0.2s;
}

.elementor-section.luca-nav .nav-links a:hover .elementor-icon-list-text {
  color: var(--tc);
}

.elementor-section.luca-nav .nav-back .elementor-button {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tc);
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.luca-nav .nav-back .elementor-button::before {
  content: '← ';
  font-size: 14px;
}

.elementor-section.luca-nav .nav-back .elementor-button:hover {
  color: var(--esp);
  background: transparent;
}

/* ── Hero section layout ── */
.elementor-section.hero.luca-page > .elementor-container {
  max-width: 1100px;
  min-height: 90vh;
  padding: 130px 2.5rem 80px;
  align-items: center;
}

.elementor-section.hero .hero-left {
  animation: luca-fadeUp 0.8s ease both;
}

.elementor-section.hero .hero-right {
  animation: luca-fadeUp 0.8s 0.2s ease both;
}

.elementor-section.hero .hero-kicker .elementor-heading-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tc);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.hero .hero-kicker .elementor-heading-title::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--tc);
  flex-shrink: 0;
}

.elementor-section.hero .hero-headline .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.elementor-section.hero .hero-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--esp);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 460px;
}

.elementor-section.hero .hero-actions > .elementor-container {
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.elementor-section.hero .btn-primary .elementor-button {
  background: var(--tc);
  color: var(--wht);
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  border: none;
}

.elementor-section.hero .btn-primary .elementor-button:hover {
  background: var(--esp);
  color: var(--wht);
  transform: translateY(-1px);
}

.elementor-section.hero .btn-secondary .elementor-button {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--tc);
  border-radius: 0;
  padding: 0 0 2px;
  color: var(--tc);
  font-size: 13px;
  letter-spacing: 0.03em;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.hero .btn-secondary .elementor-button:hover {
  color: var(--esp);
  background: transparent;
}

.elementor-section.hero .hero-credentials .elementor-icon-list-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 1.5rem;
}

.elementor-section.hero .hero-credentials .elementor-icon-list-icon {
  width: 6px;
  height: 6px;
}

.elementor-section.hero .hero-credentials .elementor-icon-list-icon i,
.elementor-section.hero .hero-credentials .elementor-icon-list-icon svg {
  width: 6px;
  height: 6px;
}

.elementor-section.hero .hero-credentials .elementor-icon-list-text {
  font-size: 11px;
  color: var(--gry);
}

.elementor-section.hero .hero-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
}

.elementor-section.hero .hero-photo-wrap .elementor-widget-container {
  position: relative;
}

.elementor-section.hero .hero-photo-wrap .elementor-widget-container::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: var(--tc);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.15;
}

.elementor-section.hero .hero-photo-wrap .elementor-widget-container::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 50px;
  height: 50px;
  border: 2px solid var(--och);
  border-radius: 4px;
  z-index: -1;
}

/* ── Ticker (HTML widget) ── */
.luca-ticker-section .elementor-widget-container {
  padding: 0;
}

/* ── About ── */
.elementor-section.about.luca-page {
  background: var(--lbg);
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
}

.elementor-section.about.luca-page > .elementor-container {
  max-width: 1100px;
  padding: 90px 2.5rem;
  align-items: start;
}

.elementor-section.about .about-left {
  position: sticky;
  top: 80px;
}

.elementor-section.about .section-label .elementor-heading-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tc);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.about .section-label .elementor-heading-title::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--tc);
}

.elementor-section.about .section-title .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.elementor-section.about .about-tagline-wrap {
  font-size: 15px;
  line-height: 1.8;
  color: var(--esp);
  font-style: italic;
  font-weight: 300;
  border-left: 3px solid var(--tc);
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.elementor-section.about .about-photo img {
  width: 100%;
  display: block;
  border-radius: 6px 6px 0 0;
}

.elementor-section.about .about-photo .elementor-widget-container {
  border: 1px solid var(--brd);
  border-radius: 6px;
  overflow: hidden;
}

.elementor-section.about .about-photo-caption {
  font-size: 10px;
  color: var(--gry);
  padding: 8px 12px;
  background: var(--lbg);
  font-style: italic;
  border: 1px solid var(--brd);
  border-top: none;
  border-radius: 0 0 6px 6px;
  margin-top: -4px;
}

.elementor-section.about .about-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--esp);
  font-weight: 300;
}

.elementor-section.about .about-body strong {
  font-weight: 400;
  color: var(--ink);
}

.elementor-section.about .ventures > .elementor-container {
  gap: 14px;
}

.elementor-section.about .venture-card {
  background: var(--wht);
  border: 1px solid var(--brd);
  border-radius: 6px;
  border-top: 3px solid var(--tc);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.elementor-section.about .venture-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 26, 14, 0.08);
}

.elementor-section.about .venture-card .elementor-column {
  cursor: pointer;
}

.elementor-section.about .venture-card .elementor-element-populated {
  padding: 1.25rem;
}

.elementor-section.about .venture-name .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 5px;
}

.elementor-section.about .venture-desc {
  font-size: 12px;
  color: var(--gry);
  line-height: 1.6;
}

.elementor-section.about .venture-link .elementor-heading-title {
  font-size: 10px;
  color: var(--tc);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

/* ── Pillars ── */
.elementor-section.pillars.luca-page {
  background: var(--ink);
  border-top: 3px solid var(--tc);
}

.elementor-section.pillars.luca-page > .elementor-container {
  max-width: 1100px;
  padding: 70px 2.5rem;
}

.elementor-section.pillars .pillar {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s;
}

.elementor-section.pillars .elementor-column:last-child .pillar {
  border-right: none;
}

.elementor-section.pillars .pillar:hover {
  background: rgba(255, 255, 255, 0.03);
}

.elementor-section.pillars .pillar-num .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  color: var(--tc);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.elementor-section.pillars .pillar-title .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--pch);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.elementor-section.pillars .pillar-body {
  font-size: 13px;
  color: #9a8878;
  line-height: 1.75;
  font-weight: 300;
}

.elementor-section.pillars .pillar-tag .elementor-heading-title {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tc);
  border: 1px solid rgba(192, 74, 26, 0.4);
  padding: 4px 10px;
  border-radius: 2px;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

/* ── AI section ── */
.elementor-section.ai-section.luca-page {
  background: var(--esp);
}

.elementor-section.ai-section.luca-page > .elementor-container {
  max-width: 1100px;
  padding: 90px 2.5rem;
  align-items: center;
}

.elementor-section.ai-section .ai-label .elementor-heading-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tc);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.ai-section .ai-label .elementor-heading-title::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--tc);
}

.elementor-section.ai-section .ai-headline .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--pch);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.elementor-section.ai-section .ai-body {
  font-size: 15px;
  color: #b0998a;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.elementor-section.ai-section .ai-stats > .elementor-container {
  gap: 14px;
}

.elementor-section.ai-section .ai-stat .elementor-element-populated {
  border-left: 2px solid var(--tc);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 4px 4px 0;
}

.elementor-section.ai-section .ai-stat-n .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--tc);
  line-height: 1;
  margin-bottom: 4px;
}

.elementor-section.ai-section .ai-stat-l .elementor-heading-title {
  font-size: 11px;
  color: #9a8878;
  line-height: 1.5;
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
}

.elementor-section.ai-section .ai-right {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  border-top: 3px solid var(--tc);
}

.elementor-section.ai-section .ai-right .elementor-element-populated {
  padding: 2rem;
}

.elementor-section.ai-section .ai-article-label .elementor-heading-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--tc);
  margin-bottom: 1rem;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.ai-section .ai-article-title .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--pch);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.elementor-section.ai-section .ai-article-excerpt {
  font-size: 13px;
  color: #9a8878;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.elementor-section.ai-section .ai-article-stats {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.elementor-section.ai-section .ai-article-stat-n .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--tc);
  text-align: center;
}

.elementor-section.ai-section .ai-article-stat-l .elementor-heading-title {
  font-size: 9px;
  color: #9a8878;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.ai-section .ai-read-btn .elementor-button {
  background: var(--tc);
  color: white;
  padding: 11px 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  border: none;
}

.elementor-section.ai-section .ai-read-btn .elementor-button:hover {
  background: #a03a12;
  color: white;
}

/* ── Book ── */
.elementor-section.book-section.luca-page {
  background: var(--pch);
  border-top: 1px solid var(--brd);
}

.elementor-section.book-section.luca-page > .elementor-container {
  max-width: 1100px;
  padding: 90px 2.5rem;
  align-items: center;
}

.elementor-section.book-section .book-visual {
  background: var(--ink);
  border-radius: 4px;
  box-shadow: 8px 12px 32px rgba(44, 26, 14, 0.25);
  position: relative;
  overflow: hidden;
}

.elementor-section.book-section .book-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tc);
  z-index: 1;
}

.elementor-section.book-section .book-visual .elementor-element-populated {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
}

.elementor-section.book-section .book-visual-tag .elementor-heading-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--tc);
  margin-bottom: 2rem;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.book-section .book-visual-title .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--pch);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.elementor-section.book-section .book-visual-rule {
  width: 40px;
  height: 2px;
  background: var(--tc);
  margin: 0 auto 1rem;
}

.elementor-section.book-section .book-visual-sub {
  font-size: 11px;
  color: #888;
  font-style: italic;
}

.elementor-section.book-section .book-visual-author .elementor-heading-title {
  font-size: 11px;
  color: var(--pch);
  margin-top: auto;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.book-section .book-label .elementor-heading-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tc);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.book-section .book-label .elementor-heading-title::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--tc);
}

.elementor-section.book-section .book-title .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.elementor-section.book-section .book-subtitle .elementor-heading-title {
  font-size: 15px;
  color: var(--tc);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-family: 'Source Serif 4', serif;
}

.elementor-section.book-section .book-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--esp);
  font-weight: 300;
}

.elementor-section.book-section .book-pull {
  border-left: 3px solid var(--tc);
  padding: 0.75rem 1.25rem;
  background: rgba(192, 74, 26, 0.06);
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
}

.elementor-section.book-section .book-coming {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 12px;
  background: white;
  padding: 10px 18px;
  border-radius: 3px;
  border: 1px solid var(--brd);
}

/* ── Writing ── */
.elementor-section.writing.luca-page > .elementor-container {
  max-width: 1100px;
  padding: 90px 2.5rem;
}

.elementor-section.writing .writing-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--brd);
  padding-bottom: 1.5rem;
}

.elementor-section.writing .writing-title .elementor-heading-title {
  font-size: 32px;
  margin-bottom: 0;
}

.elementor-section.writing .view-all .elementor-button {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--tc);
  border-radius: 0;
  padding: 0 0 2px;
  color: var(--tc);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.writing .view-all .elementor-button:hover {
  color: var(--esp);
  background: transparent;
}

.elementor-section.writing .articles-grid-wrap > .elementor-container > .elementor-column > .elementor-widget-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}

.elementor-section.writing .article-card {
  background: var(--wht);
  border: 1px solid var(--brd);
  transition: background 0.2s;
  height: 100%;
}

.elementor-section.writing .article-card.featured {
  grid-row: span 2;
  border-left: 4px solid var(--tc);
}

.elementor-section.writing .article-card:hover {
  background: var(--lbg);
}

.elementor-section.writing .article-card .elementor-element-populated {
  padding: 2rem;
}

.elementor-section.writing .art-kicker .elementor-heading-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--tc);
  margin-bottom: 0.6rem;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.writing .art-headline .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.elementor-section.writing .article-card.featured .art-headline .elementor-heading-title {
  font-size: 26px;
  line-height: 1.2;
}

.elementor-section.writing .art-excerpt {
  font-size: 13px;
  color: var(--gry);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 300;
}

.elementor-section.writing .art-meta .elementor-heading-title {
  font-size: 10px;
  color: var(--gry);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.writing .art-read .elementor-heading-title {
  font-size: 10px;
  color: var(--tc);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.writing .article-card .elementor-column {
  cursor: pointer;
}

/* ── Email ── */
.elementor-section.email-strip.luca-page {
  background: var(--ink);
}

.elementor-section.email-strip.luca-page > .elementor-container {
  max-width: 560px;
  padding: 70px 2.5rem;
}

.elementor-section.email-strip .email-kicker .elementor-heading-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tc);
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.email-strip .email-headline .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--pch);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
}

.elementor-section.email-strip .email-sub {
  font-size: 14px;
  color: #888;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.elementor-section.email-strip .email-note {
  font-size: 10px;
  color: #555;
  margin-top: 10px;
}

.elementor-section.email-strip .email-form-shortcode .luca-subscribe-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
}

/* ── Footer ── */
.elementor-section.footer-top.luca-footer {
  background: var(--esp);
  border-top: 3px solid var(--tc);
}

.elementor-section.footer-top.luca-footer > .elementor-container {
  max-width: 1100px;
  padding: 50px 2.5rem 0;
}

.elementor-section.footer-top .footer-logo > .elementor-container {
  align-items: center;
  gap: 10px;
}

.elementor-section.footer-top .nav-mark .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--pch);
  line-height: 32px;
  text-align: center;
}

.elementor-section.footer-top .nav-mark .elementor-widget-container {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--tc);
}

.elementor-section.footer-top .nav-name .elementor-heading-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--pch);
}

.elementor-section.footer-top .footer-tagline {
  font-size: 13px;
  color: #9a8070;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.elementor-section.footer-top .footer-social .elementor-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
}

.elementor-section.footer-top .footer-social .elementor-social-icon:hover {
  border-color: var(--tc);
  background: rgba(192, 74, 26, 0.15);
}

.elementor-section.footer-top .footer-col-title .elementor-heading-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tc);
  margin-bottom: 1.2rem;
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
}

.elementor-section.footer-top .footer-links .elementor-icon-list-icon {
  display: none;
}

.elementor-section.footer-top .footer-links .elementor-icon-list-text {
  font-size: 13px;
  color: #9a8070;
  font-weight: 300;
}

.elementor-section.footer-top .footer-links a:hover .elementor-icon-list-text {
  color: var(--pch);
}

.elementor-section.footer-bottom-section.luca-footer {
  background: var(--esp);
}

.elementor-section.footer-bottom-section.luca-footer > .elementor-container {
  max-width: 1100px;
  padding: 1.5rem 2.5rem 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.elementor-section.footer-bottom-section .footer-copy,
.elementor-section.footer-bottom-section .footer-domain {
  font-size: 11px;
  color: #5a4a40;
}

/* ── Elementor responsive ── */
@media (max-width: 900px) {
  .elementor-section.pillars.luca-page > .elementor-container {
    flex-wrap: wrap;
  }
  .elementor-section.pillars .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .elementor-section.book-section .book-visual {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .elementor-section.hero.luca-page > .elementor-container {
    min-height: auto;
    padding-top: 100px;
  }
  .elementor-section.hero .hero-right {
    display: none;
  }
  .elementor-section.about .about-left {
    position: static;
  }
  .elementor-section.writing .articles-grid-wrap > .elementor-container > .elementor-column > .elementor-widget-wrap {
    grid-template-columns: 1fr;
  }
  .elementor-section.writing .article-card.featured {
    grid-row: span 1;
  }
  .elementor-section.about .ventures > .elementor-container {
    flex-direction: column;
  }

  /* ── Mobile header: logo left, "All writing" right (same as desktop) ── */
  .elementor-section.luca-nav > .elementor-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 1.25rem;
    min-height: 56px;
  }

  .elementor-section.luca-nav > .elementor-container > .elementor-column.nav-links-col {
    display: none !important;
  }

  .elementor-section.luca-nav > .elementor-container > .elementor-column.nav-logo-col {
    width: auto !important;
    max-width: none !important;
    flex: 1 1 auto !important;
  }

  .elementor-section.luca-nav > .elementor-container > .elementor-column.nav-back-col {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
  }

  .elementor-section.luca-nav .nav-back-col .elementor-widget-wrap {
    display: flex;
    justify-content: flex-end;
  }

  /* Keep LC mark + name on one horizontal line */
  .elementor-section.luca-nav .nav-logo-wrap.elementor-inner-section > .elementor-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px;
    width: auto !important;
  }

  .elementor-section.luca-nav .nav-logo-wrap .elementor-column {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
  }

  .elementor-section.luca-nav .nav-mark .elementor-widget-container {
    width: 32px !important;
    min-width: 32px;
    flex-shrink: 0;
  }

  .elementor-section.luca-nav .nav-name .elementor-heading-title {
    white-space: nowrap;
    font-size: 15px;
  }

  .elementor-section.luca-nav .nav-back .elementor-button {
    white-space: nowrap;
  }

  .elementor-section.luca-nav .nav-back .elementor-button-icon,
  .elementor-section.luca-nav .nav-back .elementor-button-content-wrapper {
    display: inline-flex;
    align-items: center;
  }

  .elementor-section.luca-nav .nav-back .elementor-button-icon {
    display: none;
  }
}

