/*
Theme Name: Showrav Fresh
Theme URI: https://showravhasan.com
Author: Showrav Hasan
Author URI: https://showravhasan.com
Description: A from-scratch portfolio theme for Showrav Hasan. Warm paper whites, lime green, and coffee tones with an espresso dark footer. Built lean: no frameworks, self-hosted fonts, native interactions.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: Proprietary
Text Domain: showrav-fresh
*/

/* ============ Fonts ============ */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/fraunces.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/fonts/fraunces-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/inter.woff2") format("woff2");
}

/* ============ Tokens ============ */
:root {
  --bg: #faf8f2;
  --bg-soft: #f4f0e4;
  --bg-cream: #f1ecdb;
  --white: #ffffff;
  --ink: #231c12;
  --text: #4a4234;
  --muted: #8b7d66;
  --line: #e7e0cd;
  --line-2: #d8cdb2;
  --lime: #86c821;
  --lime-2: #a5dd4b;
  --lime-ink: #243a04;
  --lime-soft: #eef6da;
  --lime-line: #d7e9ac;
  --coffee: #6f5638;
  --esp: #221a10;
  --esp-2: #2f2517;
  --cream-ink: #ede4cd;
  --green: #0e9d64;
  --red: #d2483e;
  --grad: linear-gradient(120deg, #b9e95d, #86c821 55%, #64a70e);
  --grad-text: linear-gradient(100deg, #6fae12, #3f6c04);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --disp: "Fraunces", Georgia, serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --r: 20px;
  --r-sm: 12px;
  --w: 1160px;
  --hdr: 76px;
  --sh: 0 22px 45px -24px rgba(84, 66, 36, .38);
  --sh-lime: 0 12px 28px -12px rgba(134, 200, 33, .55);
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 16.5px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #4c8a08; text-decoration: none; transition: color .18s; }
a:hover { color: var(--coffee); }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--disp); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.015em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1.05em; }
ul, ol { padding-left: 1.25em; }
:focus-visible { outline: 2px solid #4c8a08; outline-offset: 2px; border-radius: 4px; }
::selection { background: #ddefb4; color: var(--ink); }

.container { width: min(var(--w), 92%); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 104px) 0; position: relative; }
.section--tight { padding: clamp(36px, 5vw, 64px) 0; }
.section--cream { background: var(--bg-cream); border-block: 1px solid var(--line); }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--esp); color: var(--cream-ink); padding: 12px 20px; border-radius: 0 0 12px 0; font-weight: 600; }
.skip-link:focus { left: 0; color: var(--cream-ink); }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .74rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--coffee); margin-bottom: 15px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--lime); border-radius: 2px; }
.sec-head { max-width: 700px; margin-bottom: clamp(32px, 5vw, 54px); }
.sec-head p { color: var(--muted); font-size: 1.06rem; margin: 0; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow::before { display: none; }
.text-grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============ Buttons / chips ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px; font-weight: 650; font-size: .97rem;
  font-family: var(--font); border: 1.5px solid transparent; cursor: pointer; line-height: 1.2;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s, color .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--go { background: var(--grad); color: var(--lime-ink); box-shadow: var(--sh-lime); }
.btn--go:hover { color: var(--lime-ink); box-shadow: 0 16px 34px -12px rgba(134, 200, 33, .7); }
.btn--line { border-color: var(--line-2); color: var(--ink); background: var(--white); }
.btn--line:hover { border-color: var(--lime); color: #4c8a08; background: var(--lime-soft); }
.btn--lg { padding: 17px 34px; font-size: 1.03rem; }
.btn--sm { padding: 10px 20px; font-size: .88rem; }

.pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 17px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--white); font-size: .84rem; font-weight: 560; color: var(--text); }
.pill .dot { width: 9px; height: 9px; border-radius: 50%; background: #27b36a; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(39,179,106,.18); } 50% { box-shadow: 0 0 0 7px rgba(39,179,106,.05); } }

.tag { display: inline-block; padding: 5px 13px; border-radius: 999px; font-size: .73rem; font-weight: 650; background: var(--lime-soft); color: #4c8a08; border: 1px solid var(--lime-line); }
.tag--mint { background: #e3f4ea; color: #0c7a52; border-color: #bce4cd; }

.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }

/* ============ Header ============ */
.hdr { position: sticky; top: 0; z-index: 100; background: rgba(250, 248, 242, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s; }
.hdr.scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -18px rgba(84,66,36,.35); }
.hdr-in { display: flex; align-items: center; gap: 20px; height: var(--hdr); }
.logo { display: flex; align-items: center; gap: 11px; color: var(--ink); flex-shrink: 0; }
.logo:hover { color: var(--ink); }
.logo-badge { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--grad); color: var(--lime-ink); font-weight: 800; font-size: .95rem; box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 6px 16px -6px rgba(134,200,33,.55); }
.logo-name { font-family: var(--disp); font-style: italic; font-weight: 600; font-size: 1.22rem; letter-spacing: -.01em; }
.logo-name b { color: var(--lime); font-style: normal; }

.menu { margin-inline: auto; }
.menu ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu a { display: block; padding: 9px 15px; border-radius: 999px; color: var(--text); font-size: .92rem; font-weight: 570; white-space: nowrap; transition: background .16s, color .16s; }
.menu a:hover { color: var(--ink); background: var(--bg-soft); }
.menu .current-menu-item > a, .menu .current_page_item > a, .menu .current-menu-parent > a { color: #4c8a08; background: var(--lime-soft); font-weight: 650; }
.menu-foot { display: none; }

.hdr-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.burger { display: none; background: var(--white); border: 1px solid var(--line-2); border-radius: 12px; width: 44px; height: 44px; cursor: pointer; padding: 0; position: relative; z-index: 120; }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .2s; }
.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .menu a { padding: 9px 12px; font-size: .88rem; }
}

@media (max-width: 940px) {
  .burger { display: block; }
  .hdr-cta .btn { display: none; }
  .hdr-in { height: 66px; }
  .menu {
    position: fixed; inset: 0; z-index: 110; margin: 0;
    background: radial-gradient(560px 300px at 88% -4%, rgba(134,200,33,.14), transparent 70%), radial-gradient(500px 340px at -8% 104%, rgba(111,86,56,.1), transparent 70%), var(--bg);
    padding: 92px 24px calc(30px + env(safe-area-inset-bottom));
    display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .26s, transform .26s, visibility .26s;
  }
  .menu-open .menu { opacity: 1; visibility: visible; transform: none; }
  body.menu-open { overflow: hidden; }
  .menu ul { flex-direction: column; gap: 0; counter-reset: mnav; border-top: 1px solid var(--line); width: 100%; }
  .menu li { border-bottom: 1px solid var(--line); display: flex; align-items: center; }
  .menu li::before { counter-increment: mnav; content: "0" counter(mnav); font-family: var(--mono); font-size: .73rem; color: #4c8a08; width: 32px; flex-shrink: 0; }
  .menu a { flex: 1; display: flex; align-items: center; padding: 17px 6px; border-radius: 0; font-family: var(--disp); font-size: 1.4rem; font-weight: 600; color: var(--ink); white-space: normal; }
  .menu a::after { content: "→"; margin-left: auto; color: var(--line-2); transition: color .18s; }
  .menu a:hover { background: none; color: #4c8a08; }
  .menu a:hover::after { color: #4c8a08; }
  .menu .current-menu-item > a, .menu .current_page_item > a { background: none; color: #4c8a08; }
  .menu .current-menu-item > a::after, .menu .current_page_item > a::after { color: #4c8a08; }
  .menu-open .menu li, .menu-open .menu-foot > * { animation: mitem .4s cubic-bezier(.2,.7,.3,1) both; }
  .menu-open .menu li:nth-child(1) { animation-delay: .04s; }
  .menu-open .menu li:nth-child(2) { animation-delay: .08s; }
  .menu-open .menu li:nth-child(3) { animation-delay: .12s; }
  .menu-open .menu li:nth-child(4) { animation-delay: .16s; }
  .menu-open .menu li:nth-child(5) { animation-delay: .2s; }
  .menu-open .menu li:nth-child(6) { animation-delay: .24s; }
  .menu-open .menu li:nth-child(7) { animation-delay: .28s; }
  .menu-open .menu li:nth-child(8) { animation-delay: .32s; }
  .menu-open .menu-foot > *:nth-child(1) { animation-delay: .35s; }
  .menu-open .menu-foot > *:nth-child(2) { animation-delay: .39s; }
  .menu-foot { display: block; margin-top: auto; padding-top: 26px; }
  .menu-foot .btn { width: 100%; }
  .menu-foot .menu-note { display: block; text-align: center; margin-top: 14px; font-size: .83rem; color: var(--muted); }
  .menu-foot .menu-note a { display: inline; padding: 0; font-size: inherit; font-family: inherit; color: var(--coffee); font-weight: 650; }
}
@keyframes mitem { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .menu-open .menu li, .menu-open .menu-foot > * { animation: none; }
}

/* ============ Hero ============ */
.hero { padding: clamp(48px, 7vw, 84px) 0 clamp(44px, 6vw, 72px); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -240px; right: -180px; width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle, rgba(134,200,33,.17), transparent 62%); pointer-events: none; }
.hero::after { content: ""; position: absolute; bottom: -240px; left: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(111,86,56,.1), transparent 62%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.hero h1 { margin: 20px 0 22px; }
.hero h1 em { font-style: italic; font-weight: 500; }
.hero-sub { font-size: clamp(1.02rem, 1.5vw, 1.14rem); color: var(--muted); max-width: 54ch; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .86rem; color: var(--muted); }
.hero-meta a { color: var(--text); font-weight: 560; border-bottom: 1px solid var(--line-2); padding-bottom: 1px; }
.hero-meta a:hover { color: #4c8a08; border-color: var(--lime); }
.hero-meta .sep { opacity: .4; }

.hero-photo { position: relative; justify-self: center; padding: 10px 26px 42px 34px; }
.hero-frame { position: relative; width: min(340px, 76vw); background: var(--white); padding: 10px; border: 1px solid var(--line-2); border-radius: 230px 230px 26px 26px; box-shadow: var(--sh); }
.hero-frame::before { content: ""; position: absolute; inset: 20px -16px -16px 16px; z-index: -1; background: var(--grad); border-radius: 240px 240px 32px 32px; opacity: .45; transform: rotate(2.5deg); }
.hero-frame img { border-radius: 220px 220px 18px 18px; width: 100%; }
.hero-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; background: var(--white); border: 1px solid var(--line-2); border-radius: 14px; padding: 10px 16px; font-size: .78rem; color: var(--muted); box-shadow: var(--sh); }
.hero-chip strong { color: var(--ink); display: block; font-size: .92rem; }
.hero-chip .ci { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--lime-soft); border: 1px solid var(--lime-line); color: #4c8a08; }
.hero-chip--a { top: 9%; right: -4px; animation: bob 5.5s ease-in-out infinite alternate; }
.hero-chip--b { bottom: 26px; right: 14%; animation: bob 6.5s .7s ease-in-out infinite alternate; }
@keyframes bob { from { transform: translateY(0); } to { transform: translateY(-9px); } }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-2); border-radius: var(--r); background: var(--white); overflow: hidden; margin-top: clamp(36px, 5vw, 56px); box-shadow: var(--sh); }
.hstat { padding: 22px 24px; }
.hstat + .hstat { border-left: 1px solid var(--line); }
.hstat b { display: block; font-family: var(--disp); font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 600; color: var(--ink); line-height: 1.05; letter-spacing: -.02em; }
.hstat b i { font-style: normal; color: var(--lime); font-size: .72em; margin-left: 3px; }
.hstat span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 660; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; padding: 6px 16px 36px; }
  .hero-frame { width: min(240px, 58vw); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hstat:nth-child(3) { border-left: none; }
  .hstat:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .hero-chip--b { right: 0; }
}

/* ============ Logos ============ */
.logos { padding: 28px 0; background: var(--white); border-block: 1px solid var(--line); }
.logos-in { display: flex; align-items: center; justify-content: center; gap: clamp(26px, 6vw, 72px); flex-wrap: wrap; }
.logos-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); font-weight: 700; }
.logos img { height: 28px; width: auto; opacity: .6; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.logos img:hover { opacity: 1; filter: none; }

/* ============ Cards ============ */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; box-shadow: 0 2px 10px -4px rgba(96,76,44,.1); transition: transform .22s, border-color .22s, box-shadow .22s; }
.card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--sh); }
.card h3 { margin-bottom: .5em; }

/* ============ Services grid ============ */
.svc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.svc { display: flex; flex-direction: column; grid-column: span 2; }
.svc--wide { grid-column: span 3; }
.svc-ico { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; background: var(--lime-soft); border: 1px solid var(--lime-line); font-size: 1.45rem; transition: transform .25s; }
.svc:hover .svc-ico { transform: rotate(-6deg) scale(1.06); }
.svc p { color: var(--muted); font-size: .95rem; flex: 1; }
.svc ul { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 9px; flex: 1; }
.svc ul li { font-size: .9rem; padding-left: 24px; position: relative; color: var(--text); }
.svc ul li::before { content: "→"; position: absolute; left: 0; color: var(--lime); font-weight: 700; }
.svc-link { font-weight: 680; font-size: .92rem; display: inline-flex; gap: 7px; align-items: center; color: #4c8a08; margin-top: auto; }
.svc-link span { transition: transform .18s; display: inline-block; }
.svc-link:hover { color: var(--coffee); }
.svc-link:hover span { transform: translateX(4px); }
@media (max-width: 960px) { .svc, .svc--wide { grid-column: span 3; } }
@media (max-width: 640px) { .svc, .svc--wide { grid-column: span 6; } }

/* ============ Timeline ============ */
.tl { position: relative; display: grid; gap: 28px; margin: 0; padding: 0; }
.tl::before { content: ""; position: absolute; left: 15px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(180deg, var(--lime), var(--line)); opacity: .55; }
.tl-item { position: relative; padding-left: 56px; list-style: none; }
.tl-item::before { content: ""; position: absolute; left: 6px; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 3px solid var(--lime); box-shadow: 0 0 0 5px var(--lime-soft); }
.tl-top { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.tl-top h3 { margin: 0; font-size: 1.22rem; }
.tl-org { color: var(--coffee); font-size: .78rem; font-weight: 680; background: var(--white); border: 1px solid var(--line); padding: 3px 12px; border-radius: 999px; }
.tl-item ul { margin: 10px 0 0; color: var(--muted); font-size: .93rem; }
.tl-item > p { margin: 12px 0 0; color: var(--muted); }

/* ============ Reviews ============ */
.rev-summary { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; background: var(--white); margin-bottom: 44px; }
.rev-summary > div { text-align: center; padding: 24px 16px; }
.rev-summary > div + div { border-left: 1px solid var(--line); }
.rev-summary b { display: block; font-family: var(--disp); font-size: 2rem; font-weight: 600; color: var(--ink); }
.rev-summary .stars { color: var(--green); letter-spacing: 2px; font-size: 1.05rem; }
.rev-summary small { color: var(--muted); font-size: .8rem; }
@media (max-width: 900px) {
  .rev-summary { grid-template-columns: 1fr 1fr; }
  .rev-summary > div:nth-child(3) { border-left: 0; }
  .rev-summary > div:nth-child(n+3) { border-top: 1px solid var(--line); }
}

.rev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 22px; }
.rev { display: flex; flex-direction: column; gap: 14px; }
.rev blockquote { margin: 0; font-size: .96rem; color: var(--text); position: relative; padding-top: 22px; }
.rev blockquote::before { content: "“"; position: absolute; top: -10px; left: -3px; font-family: var(--disp); color: var(--lime); font-size: 3rem; line-height: 1; }
.rev-stars { color: var(--green); letter-spacing: 2px; font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.rev-stars .tp { font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.rev-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: var(--lime-ink); font-weight: 750; font-size: .9rem; flex-shrink: 0; }
.avatar--b { background: linear-gradient(135deg, #8a6a42, #c09a63); color: #fff; }
.rev-meta strong { color: var(--ink); font-size: .9rem; display: block; line-height: 1.25; }
.rev-meta span { color: var(--muted); font-size: .76rem; }
.rev-src { font-size: .78rem; color: var(--muted); }
.rev-src a { color: var(--green); }

/* ============ Pricing ============ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price { display: flex; flex-direction: column; position: relative; }
.price--hot { background: var(--esp); border-color: var(--esp); box-shadow: 0 28px 56px -24px rgba(34,26,16,.55); }
.price--hot:hover { border-color: var(--esp); transform: translateY(-6px); }
.price--hot h3 { color: var(--cream-ink); }
.price--hot .price-sub { color: #a89a7d; }
.flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad); color: var(--lime-ink); font-size: .72rem; font-weight: 750; padding: 5px 16px; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; box-shadow: var(--sh-lime); }
.price-sub { color: var(--muted); font-size: .9rem; min-height: 3em; }
.price-num { font-family: var(--disp); font-size: 2.5rem; font-weight: 600; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; margin: 12px 0 4px; }
.price-num small { font-size: .92rem; color: var(--muted); font-weight: 400; font-family: var(--font); }
.price--hot .price-num { color: #fff; }
.price--hot .price-num small { color: #a89a7d; }
.price ul { list-style: none; margin: 20px 0 26px; padding: 20px 0 0; border-top: 1px solid var(--line); display: grid; gap: 11px; flex: 1; }
.price--hot ul { border-top-color: rgba(237,228,205,.16); }
.price ul li { padding-left: 28px; position: relative; font-size: .93rem; }
.price--hot ul li { color: var(--cream-ink); }
.price ul li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; font-size: .62rem; font-weight: 800; background: var(--lime-soft); color: #4c8a08; }
.price--hot ul li::before { background: rgba(134,200,33,.2); color: var(--lime-2); }
.price--hot .btn--line { background: transparent; border-color: rgba(237,228,205,.3); color: var(--cream-ink); }
.price--hot .btn--line:hover { border-color: var(--lime); background: rgba(134,200,33,.12); color: #d9f0a8; }
.price-note { text-align: center; margin-top: 20px; font-size: .84rem; color: var(--muted); }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ============ FAQ ============ */
.faq-list { max-width: 840px; margin-inline: auto; display: grid; gap: 13px; }
.faq { border: 1px solid var(--line); border-radius: 18px; background: var(--white); overflow: hidden; box-shadow: 0 2px 10px -4px rgba(96,76,44,.1); transition: border-color .2s, box-shadow .2s; }
.faq[open] { border-color: var(--lime-line); box-shadow: var(--sh); }
.faq summary { list-style: none; cursor: pointer; padding: 19px 58px 19px 24px; font-weight: 650; color: var(--ink); position: relative; font-size: .99rem; min-height: 58px; display: flex; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--lime-soft); border: 1px solid var(--lime-line); color: #4c8a08; font-size: 1.1rem; transition: transform .25s, background .25s; }
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--lime); color: var(--lime-ink); border-color: transparent; }
.faq .faq-a { padding: 0 24px 21px; color: var(--muted); font-size: .95rem; margin: 0; }

/* ============ CTA band ============ */
.cta { border-radius: 28px; padding: clamp(36px, 5vw, 60px); display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 4vw, 48px); align-items: center; background: linear-gradient(120deg, #f5fae6 0%, #eef5da 48%, #f6f1e2 100%); border: 1px solid var(--lime-line); position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(134,200,33,.18) 1.3px, transparent 1.3px); background-size: 24px 24px; mask-image: radial-gradient(ellipse 70% 130% at 100% 0%, #000 10%, transparent 62%); -webkit-mask-image: radial-gradient(ellipse 70% 130% at 100% 0%, #000 10%, transparent 62%); }
.cta h2 { margin-bottom: .3em; position: relative; }
.cta p { color: var(--text); margin: 0; max-width: 50ch; position: relative; }
.cta-side { position: relative; display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cta-mail { font-family: var(--mono); font-size: .9rem; color: #4c8a08; font-weight: 600; text-align: center; }
.cta-mail:hover { color: var(--coffee); }
.cta-tz { font-size: .8rem; color: var(--muted); text-align: center; }
@media (max-width: 800px) { .cta { grid-template-columns: 1fr; } }

/* ============ Contact form ============ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 5vw, 68px); align-items: start; }
.info-list { display: grid; margin-top: 28px; border-top: 1px solid var(--line-2); }
.info-row { display: flex; gap: 15px; align-items: flex-start; padding: 18px 4px; border-bottom: 1px solid var(--line-2); }
.info-row .ii { width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; background: var(--lime-soft); border: 1px solid var(--lime-line); color: #4c8a08; }
.info-row strong { color: var(--ink); display: block; font-size: .95rem; }
.info-row span { color: var(--muted); font-size: .87rem; }

.form-panel { background: var(--white); border: 1px solid var(--line-2); border-radius: 24px; padding: clamp(26px, 4vw, 42px); box-shadow: var(--sh); }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field--full { grid-column: 1 / -1; }
.f-field label { font-size: .85rem; font-weight: 650; color: var(--ink); }
.f-field input, .f-field select, .f-field textarea { background: #fdfcf8; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 15px; color: var(--ink); font-family: inherit; font-size: .95rem; width: 100%; transition: border-color .18s, box-shadow .18s, background .18s; }
.f-field textarea { min-height: 132px; resize: vertical; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { outline: none; border-color: var(--lime); background: #fff; box-shadow: 0 0 0 4px rgba(134,200,33,.16); }
.f-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--coffee) 50%), linear-gradient(135deg, var(--coffee) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.f-field .btn { width: 100%; }
.f-note { font-size: .82rem; color: var(--muted); margin: 15px 0 0; }
.f-status { margin-top: 16px; padding: 13px 17px; border-radius: 12px; font-size: .92rem; display: none; }
.f-status.ok { display: block; background: #e5f6ee; border: 1px solid #bfe6d4; color: #0c7a52; }
.f-status.err { display: block; background: #fdecec; border: 1px solid #f5c6c6; color: var(--red); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .f-grid { grid-template-columns: 1fr; } }

/* ============ Page hero (inner pages) ============ */
.p-hero { padding: clamp(46px, 7vw, 84px) 0 clamp(36px, 5vw, 60px); background: var(--bg-cream); border-bottom: 1px solid var(--line-2); position: relative; overflow: hidden; }
.p-hero::before { content: ""; position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 900px; height: 420px; background: radial-gradient(ellipse, rgba(134,200,33,.18), transparent 68%); pointer-events: none; }
.p-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(111,86,56,.1) 1.2px, transparent 1.2px); background-size: 26px 26px; opacity: .4; mask-image: linear-gradient(180deg, #000 15%, transparent 85%); -webkit-mask-image: linear-gradient(180deg, #000 15%, transparent 85%); }
.p-hero .container { position: relative; z-index: 1; }
.p-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); max-width: 22ch; }
.p-hero .lead { color: var(--text); font-size: clamp(1.02rem, 1.7vw, 1.18rem); max-width: 70ch; margin: 0; }
.p-hero .hero-btns { margin-top: 28px; }
.crumbs { font-size: .8rem; color: var(--muted); margin-bottom: 18px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.crumbs li:not(:last-child)::after { content: "›"; margin-left: 6px; opacity: .55; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: #4c8a08; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ============ Split ============ */
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.split--top { align-items: start; }
.frame { border-radius: 24px; position: relative; background: var(--white); padding: 10px; border: 1px solid var(--line-2); box-shadow: var(--sh); }
.frame img { border-radius: 16px; }
.frame::after { content: ""; position: absolute; inset: 18px -14px -14px 14px; z-index: -1; background: var(--bg-cream); border-radius: 28px; transform: rotate(-2.4deg); }
.checks { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.checks li { padding-left: 34px; position: relative; color: var(--text); }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 800; background: var(--grad); color: var(--lime-ink); box-shadow: 0 4px 10px -4px rgba(134,200,33,.6); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .frame { max-width: 500px; } }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; background: var(--white); margin-top: 40px; }
.stat-row > div { padding: 26px 22px; text-align: center; }
.stat-row > div + div { border-left: 1px solid var(--line); }
.stat-row b { display: block; font-family: var(--disp); font-size: 1.7rem; font-weight: 600; color: var(--ink); }
.stat-row small { display: block; margin-top: 8px; font-size: .82rem; color: var(--muted); }
@media (max-width: 700px) {
  .stat-row { grid-template-columns: 1fr; }
  .stat-row > div + div { border-left: 0; border-top: 1px solid var(--line); }
}

/* ============ Skills columns ============ */
.cols3 { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line-2); }
.col3 { padding: 28px 30px; }
.col3 + .col3 { border-left: 1px solid var(--line); }
.col3 h3 { font-size: 1.15rem; margin-bottom: 14px; }
.col3 ul { margin: 0; padding-left: 1.1em; font-size: .9rem; color: var(--muted); display: grid; gap: 8px; }
.col3 li::marker { color: var(--lime); }
@media (max-width: 900px) {
  .cols3 { grid-template-columns: 1fr; }
  .col3 + .col3 { border-left: 0; border-top: 1px solid var(--line); }
}

/* ============ Fit / two panels ============ */
.panels2 { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-2); border-radius: 24px; overflow: hidden; background: var(--white); }
.panel2 { padding: clamp(26px, 3vw, 40px); }
.panel2 + .panel2 { border-left: 1px solid var(--line); }
.panel2 h3 { display: flex; gap: 12px; align-items: center; font-size: 1.25rem; }
.panel2 ul { margin: 16px 0 0; padding-left: 1.1em; display: grid; gap: 10px; font-size: .93rem; color: var(--muted); }
.panel2 li::marker { color: var(--lime); }
.p-ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: var(--lime-soft); border: 1px solid var(--lime-line); color: #4c8a08; }
@media (max-width: 800px) {
  .panels2 { grid-template-columns: 1fr; }
  .panel2 + .panel2 { border-left: 0; border-top: 1px solid var(--line); }
}

/* ============ Blog ============ */
.post-list { border-bottom: 1px solid var(--line-2); }
.post-row { display: grid; grid-template-columns: 140px 1fr auto; gap: clamp(18px, 3vw, 40px); align-items: center; padding: 26px 18px; margin-inline: -18px; border-top: 1px solid var(--line-2); border-radius: 18px; transition: background .2s; }
.post-row:hover { background: var(--bg-soft); }
.post-when { font-family: var(--mono); font-size: .76rem; color: var(--coffee); text-transform: uppercase; letter-spacing: .06em; line-height: 1.9; }
.post-when .tag { display: inline-block; margin-top: 4px; }
.post-row h3 { margin: 0 0 6px; font-size: clamp(1.2rem, 2vw, 1.5rem); }
.post-row h3 a { color: var(--ink); }
.post-row h3 a:hover { color: #4c8a08; }
.post-row p { margin: 0; color: var(--muted); font-size: .93rem; max-width: 72ch; }
.post-go { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--ink); background: var(--white); transition: background .2s, color .2s, border-color .2s, transform .2s; }
.post-row:hover .post-go { background: var(--grad); border-color: transparent; color: var(--lime-ink); transform: translateX(4px); }
@media (max-width: 700px) {
  .post-row { grid-template-columns: 1fr auto; }
  .post-when { grid-column: 1 / -1; }
}

.article { max-width: 790px; margin-inline: auto; }
.article-body { font-size: 1.05rem; }
.article-body h2 { margin-top: 2em; font-size: 1.6rem; }
.article-body h3 { margin-top: 1.7em; font-size: 1.25rem; }
.article-body img { border-radius: 14px; border: 1px solid var(--line); margin: 1.4em 0; }
.article-body pre { background: var(--esp); border-radius: 16px; padding: 20px 22px; overflow-x: auto; font-size: .88rem; line-height: 1.65; box-shadow: var(--sh); }
.article-body code { font-family: var(--mono); }
.article-body p code, .article-body li code { background: var(--lime-soft); border: 1px solid var(--lime-line); padding: 2px 8px; border-radius: 7px; font-size: .85em; color: #4c8a08; }
.article-body pre code { background: none; border: none; padding: 0; color: #e8ddc4; }
.article-body blockquote { border-left: 4px solid var(--lime); margin: 1.6em 0; padding: 16px 26px; background: var(--bg-cream); border-radius: 0 16px 16px 0; font-family: var(--disp); font-style: italic; font-size: 1.12rem; color: var(--ink); }
.article-body blockquote p { margin: 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .92rem; display: block; overflow-x: auto; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 11px 15px; text-align: left; }
.article-body th { background: var(--bg-cream); color: var(--ink); font-weight: 650; }
.article-body ul, .article-body ol { margin: 1.1em 0; }
.article-body li { margin-bottom: .45em; }
.article-body li::marker { color: var(--lime); font-weight: 700; }
.article-body a { text-decoration: underline; text-decoration-color: var(--lime-line); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-color: var(--lime); }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 42px; }
.post-nav a { border: 1px solid var(--line); border-radius: 18px; background: var(--white); padding: 22px 24px; font-size: .95rem; color: var(--text); display: block; transition: transform .2s, border-color .2s, box-shadow .2s; }
.post-nav a:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: var(--sh); }
.post-nav small { color: var(--muted); display: block; margin-bottom: 6px; }
@media (max-width: 700px) { .post-nav { grid-template-columns: 1fr; } }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 46px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 10px 17px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--text); font-size: .9rem; font-weight: 550; }
.pagination a:hover { border-color: var(--lime); color: #4c8a08; background: var(--lime-soft); }
.pagination .current { background: var(--grad); border-color: transparent; color: var(--lime-ink); font-weight: 700; }

/* ============ 404 ============ */
.nf { text-align: center; padding: clamp(80px, 14vw, 150px) 0; }
.nf-code { display: inline-block; font-family: var(--mono); font-size: .85rem; color: #4c8a08; background: var(--lime-soft); border: 1px solid var(--lime-line); padding: 7px 18px; border-radius: 999px; margin-bottom: 22px; letter-spacing: .06em; }
.nf h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.nf .term { max-width: 540px; margin: 28px auto 34px; text-align: left; background: var(--esp); border-radius: 16px; padding: 20px 24px; font-family: var(--mono); font-size: .84rem; line-height: 1.7; color: #e8ddc4; box-shadow: var(--sh); }
.nf .term .err { color: #f59f9f; }
.nf .term .ok { color: var(--lime-2); }

/* ============ Footer ============ */
.footer { background: var(--esp); color: #c8bca0; padding: clamp(56px, 8vw, 92px) 0 34px; margin-top: clamp(56px, 8vw, 104px); position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: -140px; right: -120px; width: 560px; height: 380px; background: radial-gradient(ellipse, rgba(134,200,33,.14), transparent 70%); pointer-events: none; }
.foot-mark { font-family: var(--disp); font-style: italic; font-weight: 600; font-size: clamp(2.8rem, 7.5vw, 5.4rem); line-height: 1; color: var(--cream-ink); letter-spacing: -.02em; margin: 0 0 14px; display: inline-block; }
.foot-mark:hover { color: #fff; }
.foot-mark b { color: var(--lime); font-style: normal; }
.foot-tag { color: #a89a7d; max-width: 52ch; font-size: .97rem; margin: 0 0 26px; }
.foot-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.foot-cta .btn--line { background: transparent; border-color: rgba(237,228,205,.25); color: var(--cream-ink); }
.foot-cta .btn--line:hover { border-color: var(--lime); background: rgba(134,200,33,.12); color: #d9f0a8; }
.foot-soc { display: flex; gap: 10px; }
.foot-soc a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(237,228,205,.06); border: 1px solid rgba(237,228,205,.16); color: #a89a7d; transition: color .18s, border-color .18s, transform .18s, background .18s; }
.foot-soc a:hover { color: var(--lime); border-color: rgba(134,200,33,.5); background: rgba(134,200,33,.08); transform: translateY(-2px); }
.foot-cols { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(28px, 5vw, 64px); margin-top: clamp(40px, 6vw, 60px); padding-top: clamp(32px, 5vw, 44px); border-top: 1px solid rgba(237,228,205,.14); position: relative; }
.footer h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .15em; color: #8d8168; margin-bottom: 18px; font-family: var(--font); font-weight: 700; }
.foot-blurb { color: #a89a7d; font-size: .9rem; max-width: 38ch; margin: 0; }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-links a { color: #c8bca0; font-size: .93rem; }
.foot-links a:hover { color: var(--lime); }
.foot-links .current-menu-item a { color: var(--lime); }
.foot-bot { border-top: 1px solid rgba(237,228,205,.12); margin-top: clamp(32px, 5vw, 44px); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: #8d8168; font-size: .84rem; position: relative; }
.foot-top { color: #a89a7d; font-weight: 600; }
.foot-top:hover { color: var(--lime); }
@media (max-width: 900px) { .foot-cols { grid-template-columns: 1fr; gap: 30px; } }

/* WhatsApp float */
.wa { position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 95; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #23b558; box-shadow: 0 14px 32px -10px rgba(35,181,88,.6); transition: transform .2s, opacity .4s; }
.wa:hover { transform: scale(1.08); }
.wa.pre { opacity: 0; transform: translateY(18px); }
.wa svg { width: 28px; height: 28px; fill: #fff; }
.wa-label { position: absolute; right: 66px; top: 50%; transform: translateY(-50%); background: var(--white); border: 1px solid var(--line); color: var(--ink); box-shadow: var(--sh); padding: 8px 15px; border-radius: 12px; font-size: .8rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.wa:hover .wa-label, .wa.hi .wa-label { opacity: 1; }
@media (prefers-reduced-motion: no-preference) { .wa { animation: wapulse 2.4s ease 2s 3; } }
@keyframes wapulse {
  0%, 100% { box-shadow: 0 14px 32px -10px rgba(35,181,88,.6), 0 0 0 0 rgba(35,181,88,.3); }
  50% { box-shadow: 0 14px 32px -10px rgba(35,181,88,.6), 0 0 0 16px rgba(35,181,88,0); }
}

/* ============ Reveal ============ */
@media (prefers-reduced-motion: no-preference) {
  .rv-on .rv { opacity: 0; transform: translateY(18px); }
  .rv-on .rv.on { opacity: 1; transform: none; transition: opacity .55s, transform .55s; }
}

/* ============ Misc ============ */
.muted { color: var(--muted); }
.center { text-align: center; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid2, .grid3 { grid-template-columns: 1fr; } }
.resume-bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 28px 0 36px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips .tag { font-size: .8rem; padding: 8px 16px; }
.dl-card { background: var(--white); border: 1px solid var(--line-2); border-radius: 24px; padding: clamp(32px, 5vw, 52px); max-width: 720px; margin-inline: auto; box-shadow: var(--sh); }
.hp { position: absolute; left: -9999px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
@media print {
  .hdr, .footer, .wa { display: none !important; }
  body { background: #fff; color: #111; }
}
