/* ═══════════════════════════════════
   CPVP — MAIN CSS  (shared across all pages)
═══════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --green:       #2d6a4f;
  --green-mid:   #40916c;
  --green-light: #74c69d;
  --green-pale:  #d8f3dc;
  --green-ultra: #f0faf3;
  --amber:       #e07a25;
  --blue:        #1a6896;
  --text:        #1a1c1e;
  --text-mid:    #4a4f54;
  --text-soft:   #80868e;
  --border:      #e4e7eb;
  --bg:          #ffffff;
  --bg-alt:      #f7f9f8;
  --r:           12px;
  --shadow:      0 2px 16px rgba(0,0,0,.07);
}

html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a     { text-decoration: none; color: inherit; }
img   { display: block; max-width: 100%; }
ul    { list-style: none; }

/* ── SVG icons ── */
.ico { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ico svg { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ── Layout ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1rem; }
@media(min-width:640px)  { .container { padding: 0 1.5rem; } }
@media(min-width:1024px) { .container { padding: 0 2rem; } }

.section     { padding: 3.5rem 0; }
.section-alt { background: var(--bg-alt); }
@media(min-width:768px) { .section { padding: 5rem 0; } }

.section-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.section-label::before { content: ''; width: 22px; height: 2px; background: var(--green-light); display: block; border-radius: 2px; }
.section-title { font-family: 'Lora', serif; font-size: clamp(22px, 5vw, 36px); font-weight: 700; color: var(--text); line-height: 1.2; }
.section-intro { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-top: .6rem; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 32px; font-size: 14px; font-weight: 500; font-family: 'Inter', sans-serif; cursor: pointer; border: none; transition: all .2s; white-space: nowrap; }
.btn-green     { background: var(--green); color: #fff; }
.btn-green:hover { background: #245a42; }
.btn-white     { background: #fff; color: var(--green); }
.btn-white:hover { background: var(--green-pale); }
.btn-outline-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-w:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-g { background: transparent; color: var(--green); border: 1.5px solid var(--border); }
.btn-outline-g:hover { border-color: var(--green); background: var(--green-ultra); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── NAV ── */
nav { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.nav-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }
.nav-logo-fallback { width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 17px; font-weight: 700; flex-shrink: 0; }

/* Social icons in nav (desktop) */
.nav-social { display: none; }
@media(min-width:1024px) { .nav-social { display: flex; gap: 6px; align-items: center; border-left: 1px solid var(--border); padding-left: 12px; margin-left: 8px; } }
.nav-social a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-soft); transition: all .15s; font-size: 15px; }
.nav-social a:hover { border-color: var(--green); color: var(--green); background: var(--green-ultra); }
.nav-social a .ico { font-size: 16px; }

.nav-links-desktop { display: none; }
@media(min-width:1024px) { .nav-links-desktop { display: flex; gap: .15rem; margin-left: auto; } .nav-burger { display: none; } }
.nav-links-desktop a { font-size: 13px; color: var(--text-mid); padding: 6px 10px; border-radius: 8px; transition: all .15s; white-space: nowrap; }
.nav-links-desktop a:hover { color: var(--green); background: var(--green-ultra); }
.nav-links-desktop a.active { color: var(--green); font-weight: 500; }
.nav-cta-btn { background: var(--green) !important; color: #fff !important; border-radius: 24px !important; padding: 7px 15px !important; font-weight: 500 !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; }
.nav-cta-btn:hover { background: #245a42 !important; }

.nav-burger { display: flex; flex-direction: column; gap: 5px; width: 38px; height: 38px; border: none; background: none; cursor: pointer; align-items: center; justify-content: center; border-radius: 8px; transition: background .15s; }
.nav-burger:hover { background: var(--bg-alt); }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-drawer { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: #fff; z-index: 199; flex-direction: column; padding: 1.5rem 1rem; overflow-y: auto; border-top: 1px solid var(--border); }
.nav-drawer.open { display: flex; }
.nav-drawer a { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--text); padding: 14px 1rem; border-radius: var(--r); transition: background .15s; border-bottom: 1px solid var(--border); }
.nav-drawer a .ico { color: var(--green); font-size: 20px; }
.nav-drawer a:hover { background: var(--green-ultra); color: var(--green); }
.nav-drawer a.cta-link { background: var(--green); color: #fff !important; justify-content: center; margin-top: 1rem; border: none; font-weight: 500; }
.nav-drawer a.cta-link .ico { color: #fff; }

/* Mobile bottom bar (contacts + social) */
.drawer-bottom { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .75rem; }
.drawer-bottom a { border: none !important; padding: 0 !important; font-size: 14px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.drawer-bottom a .ico { color: var(--green); font-size: 18px; }
.drawer-social { display: flex; gap: 10px; margin-top: .25rem; }
.drawer-social a { width: 36px; height: 36px; background: var(--green-ultra); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none !important; padding: 0 !important; }
.drawer-social a .ico { color: var(--green); font-size: 20px; }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; }
.hero-img { position: relative; height: 520px; }
@media(min-width:640px)  { .hero-img { height: 570px; } }
@media(min-width:1024px) { .hero-img { height: 620px; } }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,40,22,.88) 0%, rgba(10,40,22,.45) 65%, rgba(10,40,22,.15) 100%); }
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-text { max-width: 580px; }
.hero h1 { font-family: 'Lora', serif; font-size: clamp(26px,6vw,50px); font-weight: 700; color: #fff; line-height: 1.12; margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--green-light); }
.hero-desc { font-size: clamp(14px,2.5vw,16px); color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 1.75rem; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--green); }
.stats-inner { display: grid; grid-template-columns: repeat(2,1fr); }
@media(min-width:640px)  { .stats-inner { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px) { .stats-inner { grid-template-columns: repeat(5,1fr); } }
.stat-item { padding: 1.25rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.stat-item:nth-child(2n) { border-right: none; }
@media(min-width:640px)  { .stat-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.15); } .stat-item:nth-child(3n) { border-right: none; } }
@media(min-width:1024px) { .stat-item { border-bottom: none; } .stat-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.15); } .stat-item:nth-child(5n) { border-right: none; } }
.stat-num { font-family: 'Lora', serif; font-size: 28px; font-weight: 700; color: #fff; display: block; line-height: 1; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ── SOBRE ── */
.sobre-grid { display: grid; gap: 3rem; }
@media(min-width:900px) { .sobre-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.sobre-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sobre-img-main { grid-column: 1/-1; height: 240px; border-radius: var(--r); overflow: hidden; }
@media(min-width:640px) { .sobre-img-main { height: 290px; } }
.sobre-img-main img { width: 100%; height: 100%; object-fit: cover; }
.sobre-img-sm { height: 150px; border-radius: var(--r); overflow: hidden; }
@media(min-width:640px) { .sobre-img-sm { height: 180px; } }
.sobre-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.sobre-quote { height: 150px; border-radius: var(--r); background: var(--green); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; text-align: center; gap: 6px; }
@media(min-width:640px) { .sobre-quote { height: 180px; } }
.sobre-quote p { font-family: 'Lora', serif; font-style: italic; font-size: 17px; color: #fff; line-height: 1.35; }
.sobre-quote span { font-size: 11px; color: rgba(255,255,255,.6); }
.sobre-text p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; }
.founded-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--green-ultra); border: 1px solid var(--green-pale); border-radius: 12px; padding: 10px 14px; margin-bottom: 1.25rem; }
.founded-badge .yr { font-family: 'Lora', serif; font-size: 22px; font-weight: 700; color: var(--green); }
.founded-badge .desc { font-size: 12px; color: var(--green); line-height: 1.3; }

/* ── RESPOSTAS GRID ── */
.respostas-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media(min-width:540px)  { .respostas-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .respostas-grid { grid-template-columns: repeat(4,1fr); } }
.rc { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: all .2s; box-shadow: var(--shadow); }
.rc:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.11); border-color: var(--green-light); }
.rc-photo { height: 180px; overflow: hidden; background: var(--bg-alt); }
@media(min-width:540px) { .rc-photo { height: 160px; } }
.rc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.rc:hover .rc-photo img { transform: scale(1.05); }
.rc-bar { height: 4px; }
.bar-teal  { background: #1D9E75; }
.bar-green { background: var(--green); }
.bar-amber { background: var(--amber); }
.bar-blue  { background: var(--blue); }
.rc-body { padding: 1.25rem; }
.rc-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: .75rem; }
.rc-icon .ico { font-size: 22px; }
.ic-teal  { background: #e1f5ee; color: #0F6E56; }
.ic-green { background: var(--green-pale); color: var(--green); }
.ic-amber { background: #faeeda; color: #633806; }
.ic-blue  { background: #e6f1fb; color: #0C447C; }
.rc-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.rc-body p  { font-size: 13px; color: var(--text-mid); line-height: 1.55; margin-bottom: .75rem; }
.rc-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.tag       { font-size: 11px; padding: 3px 9px; border-radius: 20px; background: var(--bg-alt); color: var(--text-mid); font-weight: 500; }
.t-teal    { background: #e1f5ee; color: #0F6E56; }
.t-green   { background: var(--green-pale); color: var(--green); }
.t-amber   { background: #faeeda; color: #633806; }
.t-blue    { background: #e6f1fb; color: #0C447C; }
.rc-link   { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--green); font-weight: 500; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.rc-link .ico { font-size: 15px; }

/* ── NÚMEROS ── */
.num-section { background: var(--green-ultra); border-top: 1px solid var(--green-pale); border-bottom: 1px solid var(--green-pale); padding: 2.5rem 0; }
.num-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--green-pale); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
@media(min-width:640px)  { .num-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px) { .num-grid { grid-template-columns: repeat(5,1fr); } }
.num-item { background: #fff; padding: 2rem 1rem; text-align: center; }
.num-val  { font-family: 'Lora', serif; font-size: clamp(28px,5vw,40px); font-weight: 700; color: var(--green); display: block; line-height: 1; margin-bottom: 6px; }
.num-lbl  { font-size: 12px; color: var(--text-soft); }

/* ── NOTÍCIAS ── */
.news-hdr { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.news-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media(min-width:640px)  { .news-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .news-grid { grid-template-columns: 2fr 1fr 1fr; } }
.ncard { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: all .2s; box-shadow: var(--shadow); }
.ncard:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.10); }
.ncard-img { overflow: hidden; background: var(--bg-alt); }
.ncard-img img { width: 100%; object-fit: cover; transition: transform .3s; height: 200px; }
.ncard.featured .ncard-img img { height: 220px; }
@media(min-width:1024px) { .ncard:not(.featured) .ncard-img img { height: 150px; } .ncard.featured .ncard-img img { height: 240px; } }
.ncard:hover .ncard-img img { transform: scale(1.04); }
.ncard-body { padding: 1.25rem; }
.ncat { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.ncat::before { content: ''; width: 14px; height: 2px; background: var(--green-light); display: block; border-radius: 2px; }
.ncard h3 { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.35; margin-bottom: 8px; }
.ncard.featured h3 { font-size: 17px; }
.ncard-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: .75rem; }
.ndate { font-size: 12px; color: var(--text-soft); display: flex; align-items: center; gap: 4px; }
.ndate .ico { font-size: 14px; }

/* ── RANCHO ── */
.rancho-wrap { display: grid; gap: 3rem; }
@media(min-width:900px) { .rancho-wrap { grid-template-columns: 1fr 1fr; align-items: center; } }
.rancho-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; order: -1; }
@media(min-width:900px) { .rancho-photos { order: 0; } }
.rphoto { border-radius: var(--r); overflow: hidden; background: var(--bg-alt); }
.rphoto img { width: 100%; height: 155px; object-fit: cover; object-position: center top; }
@media(min-width:540px) { .rphoto img { height: 170px; } }
.rphoto.tall img { height: 200px; }
@media(min-width:540px) { .rphoto.tall img { height: 215px; } }
.rbadges { display: flex; gap: 10px; margin: 1.25rem 0; flex-wrap: wrap; }
.rbadge { background: var(--green-ultra); border: 1px solid var(--green-pale); border-radius: 12px; padding: .75rem 1rem; text-align: center; flex: 1; min-width: 80px; }
.rbadge .val { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; color: var(--green); display: block; }
.rbadge .lbl { font-size: 11px; color: var(--text-soft); }

/* ── TIMELINE ── */
.hist-wrap { display: grid; gap: 3rem; }
@media(min-width:900px) { .hist-wrap { grid-template-columns: 1fr 1.6fr; align-items: start; } }
@media(min-width:900px) { .hist-aside { position: sticky; top: 80px; } }
.hist-photo { border-radius: var(--r); overflow: hidden; margin-bottom: 1.25rem; }
.hist-photo img { width: 100%; height: 220px; object-fit: cover; }
.hist-aside blockquote { font-family: 'Lora', serif; font-style: italic; font-size: clamp(16px,2.5vw,20px); color: var(--green); line-height: 1.5; border-left: 3px solid var(--green-light); padding-left: 1rem; }
.hist-aside blockquote cite { display: block; font-style: normal; font-size: 12px; color: var(--text-soft); margin-top: 8px; font-family: 'Inter', sans-serif; }
.timeline { display: flex; flex-direction: column; gap: 2rem; }
.tl { display: flex; gap: 1.25rem; position: relative; }
.tl::before { content: ''; position: absolute; left: 46px; top: 38px; bottom: -2rem; width: 1.5px; background: var(--border); }
.tl:last-child::before { display: none; }
.tl-yr { font-family: 'Lora', serif; font-size: 16px; font-weight: 700; color: var(--green); min-width: 48px; text-align: right; padding-top: 3px; }
.tl-dot { width: 11px; height: 11px; background: var(--green); border-radius: 50%; border: 3px solid var(--green-pale); position: absolute; left: 42px; top: 7px; }
.tl-body { padding-left: 1.25rem; }
.tl-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.tl-body p  { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ── PROTOCOLOS ── */
.proto-strip { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 3rem 0; }
.proto-logos { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.proto-logo  { display: flex; align-items: center; gap: 7px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 10px; background: #fff; font-size: 13px; color: var(--text-mid); font-weight: 500; }
.proto-logo .ico { font-size: 17px; color: var(--green); }

/* ── CONTACTOS ── */
.ctc-wrap { display: grid; gap: 2rem; }
@media(min-width:900px) { .ctc-wrap { grid-template-columns: 1fr 1fr; } }
.cbox { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; box-shadow: var(--shadow); }
.cbox h3 { font-family: 'Lora', serif; font-size: clamp(18px,3vw,22px); font-weight: 700; margin-bottom: 1.25rem; }
.crow { display: flex; gap: 12px; padding: .9rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.crow:last-child { border-bottom: none; }
.cicon { width: 38px; height: 38px; border-radius: 10px; background: var(--green-ultra); border: 1px solid var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cicon .ico { font-size: 18px; color: var(--green); }
.clbl { font-size: 11px; color: var(--text-soft); margin-bottom: 2px; }
.cval { font-size: 14px; color: var(--text); }
.cval a { color: var(--green); }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 13px; font-weight: 500; color: var(--text-mid); margin-bottom: 6px; }
.fg input, .fg textarea, .fg select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text); background: #fff; outline: none; transition: border-color .15s; -webkit-appearance: none; appearance: none; }
.fg input:focus, .fg textarea:focus { border-color: var(--green); }
.fg textarea { height: 110px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media(max-width:400px) { .fg-row { grid-template-columns: 1fr; } }
.map-ph { border-radius: var(--r); overflow: hidden; margin-top: 1rem; }
.map-ph iframe { width: 100%; height: 200px; border: none; display: block; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--green); padding: 3rem 0 2.5rem; }
.page-hero h1 { font-family: 'Lora', serif; font-size: clamp(24px,4vw,40px); font-weight: 700; color: #fff; margin-bottom: .5rem; }
.page-hero p  { font-size: 15px; color: rgba(255,255,255,.7); max-width: 520px; }
.breadcrumb { display: flex; gap: 6px; align-items: center; font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── FOOTER ── */
footer { background: #1a2e20; padding: 3.5rem 0 1.5rem; }
.fg-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.5rem; }
@media(min-width:640px)  { .fg-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .fg-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.flogo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.flogo img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: .7; }
.flogo-fallback { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.fbrand { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8); line-height: 1.2; }
.fsub   { font-size: 10px; color: rgba(255,255,255,.3); }
.fdesc  { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75; }
.fcol h4 { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.fcol ul { display: flex; flex-direction: column; gap: .5rem; }
.fcol li a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .15s; }
.fcol li a:hover { color: var(--green-light); }
.fbot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.fbot p { font-size: 11px; color: rgba(255,255,255,.2); }
.fsocial { display: flex; gap: 10px; }
.fsocial a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); transition: all .15s; }
.fsocial a:hover { border-color: var(--green-light); color: var(--green-light); }
.fsocial a .ico { font-size: 16px; }

/* ── MODAL ── */
.mbg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 300; align-items: center; justify-content: center; padding: 1rem; }
.mbg.open { display: flex; }
.mbox { background: #fff; border-radius: 20px; padding: 2rem; max-width: 420px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.mhdr { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.mhdr h3 { font-family: 'Lora', serif; font-size: 22px; font-weight: 700; }
.mclose { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-soft); line-height: 1; display: flex; align-items: center; }
.mbox > p { font-size: 13px; color: var(--text-soft); margin-bottom: 1.5rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.page-section { scroll-margin-top: 70px; }
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.anim { opacity: 0; animation: fadeUp .5s ease forwards; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .15s; } .d3 { animation-delay: .25s; } .d4 { animation-delay: .35s; }
