/* ========== MERLINO — BRAND VENTURE ARCHITECT ==========
   Shared stylesheet for all pages.
   Visual identity: teal (#0D3331) + gold (#C9A66B) + cream (#F2ECDC).
   Typography: Lora (serif headlines) + Inter (sans body).
======================================================= */

:root {
  --teal: #0D3331;
  --teal-deep: #08221F;
  --teal-soft: #1a4644;
  --gold: #C9A66B;
  --gold-deep: #a08855;
  --gold-pale: #e0cc99;
  --cream: #F2ECDC;
  --cream-deep: #e6deca;
  --ink: #181E1E;
  --ink-muted: #5a6464;
  --max-w: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: 'Lora', Georgia, serif; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
a { color: var(--teal); text-decoration: none; }

/* ========== NAV ========== */
nav {
  position: sticky; top: 0;
  background: rgba(13, 51, 49, 0.97);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 166, 107, 0.18);
}
nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
nav .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 38px;
}
nav .brand img { height: 100%; width: auto; display: block; }
nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
nav a.link {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
nav a.link:hover { color: var(--gold); }
nav a.link.active { color: var(--gold); }
nav a.cta {
  background: var(--gold);
  color: var(--teal-deep);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
nav a.cta:hover { background: var(--gold-pale); }

.lang-toggle {
  display: inline-flex;
  background: rgba(201, 166, 107, 0.15);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--cream-deep);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.lang-toggle button.active { background: var(--gold); color: var(--teal-deep); }

.mobile-toggle {
  display: none;
  background: none; border: none;
  color: var(--gold); font-size: 26px; cursor: pointer;
}

/* ========== TYPE ========== */
.section-tag {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-deep);
  margin-bottom: 28px;
  max-width: 820px;
}
.section-intro {
  font-size: 19px;
  max-width: 760px;
  color: var(--ink-muted);
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ========== SECTIONS ========== */
section { padding: 100px 0; }

/* ========== HERO (HOME) ========== */
.hero {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201, 166, 107, 0.12), transparent 50%),
    linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--cream);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 30px;
  border: 1px solid rgba(201, 166, 107, 0.18);
  pointer-events: none;
}
.hero .corner {
  position: absolute; width: 70px; height: 70px;
  border: 2px solid var(--gold);
}
.hero .corner.tl { top: 44px; left: 44px; border-right: none; border-bottom: none; }
.hero .corner.tr { top: 44px; right: 44px; border-left: none; border-bottom: none; }
.hero .corner.bl { bottom: 44px; left: 44px; border-right: none; border-top: none; }
.hero .corner.br { bottom: 44px; right: 44px; border-left: none; border-top: none; }

.hero-content { text-align: center; position: relative; z-index: 2; }
.hero-wordmark {
  display: inline-block;
  margin-bottom: 24px;
  line-height: 0;
}
.hero-wordmark img {
  height: clamp(80px, 13vw, 150px);
  width: auto;
  display: block;
}
.hero-tag {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 40px;
}
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.18;
  max-width: 900px;
  margin: 0 auto 32px;
  color: var(--cream);
}
.hero-title em { font-style: italic; color: var(--gold-pale); }
.hero-sub {
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: var(--cream-deep);
  opacity: 0.9;
}
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ========== PAGE HEADERS (non-home) ========== */
.page-header {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--cream);
  padding: 140px 0 80px;
  position: relative;
  border-bottom: 1px solid rgba(201, 166, 107, 0.18);
}
.page-header .section-tag { color: var(--gold); }
.page-header .section-title { color: var(--cream); max-width: 900px; }
.page-header .section-intro { color: var(--cream-deep); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--teal-deep); }
.btn-primary:hover { background: var(--gold-pale); transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-ghost:hover { background: var(--gold); color: var(--teal-deep); }
.btn-dark { background: var(--teal-deep); color: var(--gold); }
.btn-dark:hover { background: var(--teal); }

/* ========== FLOURISH ========== */
.flourish { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 24px 0; }
.flourish-line { width: 80px; height: 1.5px; background: var(--gold); }
.flourish-diamond { width: 12px; height: 12px; background: var(--gold); transform: rotate(45deg); }

/* ========== QUIÉN / QUOTE ========== */
.quien { background: var(--cream); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote-box {
  background: var(--teal);
  color: var(--cream);
  padding: 60px 50px;
  border-radius: 4px;
  position: relative;
}
.quote-box::before {
  content: '“';
  font-family: 'Lora', serif;
  font-size: 120px;
  color: var(--gold);
  position: absolute;
  top: 0; left: 28px;
  line-height: 1;
}
.quote-box p {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.4;
  margin-top: 50px;
}
.quote-box cite {
  display: block;
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ========== PHASES (METHODOLOGY) ========== */
.metodologia-section { background: var(--teal); color: var(--cream); }
.metodologia-section .section-title { color: var(--cream); }
.metodologia-section .section-tag { color: var(--gold); }
.metodologia-section .section-intro { color: var(--cream-deep); }

.phases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.phase {
  background: var(--teal-deep);
  border: 1px solid rgba(201, 166, 107, 0.18);
  padding: 40px;
  border-radius: 4px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.phase:hover { transform: translateY(-4px); border-color: var(--gold); }
.phase-num {
  font-family: 'Lora', serif;
  font-size: 64px;
  color: var(--gold-pale);
  line-height: 1;
  font-weight: 600;
  opacity: 0.6;
  margin-bottom: 12px;
}
.phase-title {
  font-family: 'Lora', serif;
  font-size: 24px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.phase-desc { color: var(--cream-deep); font-size: 15px; line-height: 1.65; }
.phase-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 166, 107, 0.15);
}
.phase-detail strong { color: var(--gold); display: block; margin-bottom: 4px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.phase-detail ul { list-style: none; }
.phase-detail li { color: var(--cream-deep); font-size: 14px; padding: 4px 0 4px 18px; position: relative; }
.phase-detail li::before { content: '◆'; color: var(--gold-deep); position: absolute; left: 0; top: 3px; font-size: 10px; }

/* ========== SERVICES ========== */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card {
  background: white;
  border-radius: 6px;
  padding: 44px 36px;
  border: 1px solid var(--cream-deep);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 51, 49, 0.1);
}
.service-card.featured {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--gold);
}
.service-card.featured .service-name,
.service-card.featured .service-desc,
.service-card.featured .service-includes li { color: var(--cream); }
.service-card.featured .service-includes li::before { color: var(--gold); }

.service-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.service-card.featured .service-tag { color: var(--gold-pale); }
.service-name {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.service-desc {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-card.featured .service-desc { color: var(--cream-deep); }
.service-includes {
  list-style: none;
  margin-bottom: 28px;
  border-top: 1px solid var(--cream-deep);
  padding-top: 20px;
}
.service-card.featured .service-includes { border-top-color: rgba(201, 166, 107, 0.25); }
.service-includes li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink);
}
.service-includes li::before {
  content: '◆';
  color: var(--gold);
  position: absolute;
  left: 0; top: 8px;
  font-size: 10px;
}
.service-duration {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 15px;
  margin-bottom: 24px;
  display: block;
}
.service-card.featured .service-duration { color: var(--gold-pale); }

/* ========== FOUNDER ========== */
.fundadora-section { background: var(--cream); border-top: 2px solid var(--gold); }
.fundadora-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.fundadora-card {
  background: var(--teal);
  color: var(--cream);
  padding: 56px 44px;
  border-radius: 4px;
  text-align: center;
}
.fundadora-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--teal-deep);
  position: relative;
}
.fundadora-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fundadora-photo-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  font-family: 'Lora', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--gold);
  background: var(--teal-deep);
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
}
.fundadora-name {
  font-family: 'Lora', serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.fundadora-role {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 32px;
}
.fundadora-stat {
  border-top: 1px solid rgba(201, 166, 107, 0.25);
  padding: 18px 0;
}
.fundadora-stat:last-of-type { border-bottom: 1px solid rgba(201, 166, 107, 0.25); }
.fundadora-stat strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fundadora-stat span { color: var(--cream-deep); font-size: 15px; line-height: 1.6; display: block; }

.fundadora-bio h3 {
  font-family: 'Lora', serif;
  font-size: 28px;
  color: var(--teal-deep);
  margin-bottom: 20px;
  font-weight: 600;
}
.fundadora-bio p { font-size: 17px; color: var(--ink-muted); margin-bottom: 18px; line-height: 1.75; }

.recognitions {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-deep);
}
.recognitions h4 {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.recognitions ul { list-style: none; }
.recognitions li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--ink);
  font-size: 16px;
}
.recognitions li::before { content: '◆'; color: var(--gold); position: absolute; left: 0; top: 8px; font-size: 11px; }

/* ========== ROADMAP ========== */
.roadmap { background: var(--teal-deep); color: var(--cream); text-align: center; }
.roadmap .section-title { color: var(--cream); margin-left: auto; margin-right: auto; }
.roadmap .section-tag { color: var(--gold); }
.roadmap .section-intro { color: var(--cream-deep); margin-left: auto; margin-right: auto; }

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
}
.roadmap-grid::before {
  content: '';
  position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: var(--gold-deep); z-index: 0;
}
.roadmap-step { position: relative; z-index: 2; text-align: center; }
.roadmap-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-deep);
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 22px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--teal-deep);
}
.roadmap-step strong { display: block; color: var(--gold); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.roadmap-step span { font-size: 13px; color: var(--cream-deep); line-height: 1.4; display: block; }
.roadmap-timeframe {
  margin-top: 70px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--gold-pale);
}

/* ========== INSIGHTS / POSTS ========== */
.insights-section { background: var(--cream); }

.pillar-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--gold-deep);
  color: var(--teal-deep);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.filter-btn:hover { background: var(--cream-deep); }
.filter-btn.active { background: var(--teal); color: var(--gold); border-color: var(--teal); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.post-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13, 51, 49, 0.08);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  border: none;
  text-align: left;
  font-family: inherit;
  padding: 0;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(13, 51, 49, 0.15);
}
.post-thumb {
  aspect-ratio: 1 / 1;
  background: var(--teal);
  background-size: cover;
  background-position: center;
}
.post-meta {
  padding: 22px 24px 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  justify-content: space-between;
}
.post-content { padding: 8px 24px 24px; flex: 1; }
.post-brand {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.post-headline {
  font-family: 'Lora', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.35;
  margin-bottom: 12px;
}
.post-summary { color: var(--ink-muted); font-size: 14px; line-height: 1.55; }
.post-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--ink-muted);
  font-style: italic;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(8, 34, 31, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 60px 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--cream);
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--teal-deep);
  color: var(--gold);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.modal-card-img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  background: var(--cream-deep);
}
.modal-content { padding: 40px 48px; }
.modal-meta {
  display: flex; gap: 16px; align-items: center;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.modal-meta .pill {
  background: var(--teal);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.modal-brand {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.modal-headline {
  font-family: 'Lora', serif;
  font-size: 28px;
  line-height: 1.25;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 24px;
}
.modal-body p { font-size: 17px; line-height: 1.75; color: var(--ink); margin-bottom: 18px; }

/* ========== CONTACT ========== */
.contacto-section {
  background: var(--teal);
  color: var(--cream);
  text-align: center;
}
.contacto-section .section-title { color: var(--cream); margin: 0 auto 28px; }
.contacto-section .section-tag { color: var(--gold); }
.contacto-section .section-intro { color: var(--cream-deep); margin: 0 auto 60px; }
.contacto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contacto-card {
  padding: 36px 28px;
  border: 1px solid rgba(201, 166, 107, 0.25);
  border-radius: 4px;
  transition: all 0.25s;
}
.contacto-card:hover { border-color: var(--gold); background: var(--teal-deep); }
.contacto-icon { font-size: 32px; color: var(--gold); margin-bottom: 14px; }
.contacto-label {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-pale); margin-bottom: 8px;
}
.contacto-value { font-family: 'Lora', serif; font-size: 18px; color: var(--cream); }
.contacto-value a { color: inherit; }
.contacto-value a:hover { color: var(--gold); }

/* ========== FOOTER ========== */
footer {
  background: var(--teal-deep);
  color: var(--cream-deep);
  padding: 50px 0 30px;
  text-align: center;
  border-top: 1px solid rgba(201, 166, 107, 0.18);
}
footer .brand-foot {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  height: 50px;
}
footer .brand-foot img { height: 100%; width: auto; }
footer .tagline-foot {
  font-style: italic;
  font-family: 'Lora', serif;
  color: var(--gold-pale);
  margin-bottom: 24px;
}
footer .copy { font-size: 13px; opacity: 0.7; }

/* ========== HOME TEASERS ========== */
.home-features {
  background: var(--cream);
  padding: 100px 0;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: 6px;
  border: 1px solid var(--cream-deep);
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(13, 51, 49, 0.08);
}
.feature-card h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  color: var(--teal-deep);
  margin-bottom: 12px;
  font-weight: 600;
}
.feature-card p { color: var(--ink-muted); font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.feature-card a {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.feature-card a:hover { color: var(--teal); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--teal-deep);
    padding: 20px 32px;
    border-bottom: 1px solid rgba(201, 166, 107, 0.25);
  }
  .mobile-toggle { display: block; }
  .two-col, .fundadora-grid { grid-template-columns: 1fr; gap: 40px; }
  .phases, .feature-cards { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .roadmap-grid::before { display: none; }
  .contacto-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .hero { padding: 60px 0; min-height: auto; }
  .page-header { padding: 100px 0 60px; }
  .quote-box { padding: 40px 30px; }
  .quote-box p { font-size: 20px; }
}
