:root { --ink:#10281b; --forest:#174f35; --forest-dark:#0d2c20; --muted:#607068; --cream:#f5f7f2; --line:#dfe7df; --white:#fff; --radius:20px; }
* { box-sizing:border-box; }
body { margin:0; background:var(--cream); color:var(--ink); font-family:Inter,Arial,sans-serif; }
.rec-shell { width:min(1180px,calc(100% - 40px)); margin:0 auto; }
.rec-topbar { min-height:34px; display:grid; place-items:center; padding:7px 20px; background:#0b241a; color:#eef5ef; font-size:.76rem; text-align:center; }
.rec-header { position:sticky; top:0; z-index:20; background:rgba(255,255,255,.96); border-bottom:1px solid rgba(16,40,27,.08); backdrop-filter:blur(14px); }
.rec-header-inner { min-height:76px; display:flex; align-items:center; justify-content:space-between; gap:28px; }
.rec-header nav { display:flex; align-items:center; gap:25px; }
.rec-header nav a { color:#203b2d; text-decoration:none; font-size:.84rem; font-weight:750; }
.rec-header nav a[aria-current=page] { color:var(--forest); }
.rec-cart { min-height:40px; padding:0 16px; border:0; border-radius:11px; background:var(--forest); color:#fff; font-weight:800; cursor:pointer; }
.rec-hero { padding:72px 0 64px; background:radial-gradient(circle at 85% 5%,rgba(133,170,111,.22),transparent 34%),linear-gradient(135deg,#0c281d,#174f35); color:#fff; }
.rec-hero .rec-shell { max-width:940px; margin-left:max(20px,calc((100% - 1180px)/2)); }
.rec-line { display:block; width:64px; height:3px; margin-bottom:20px; border-radius:10px; background:linear-gradient(90deg,#d5a843,#f1d58b); }
.rec-kicker { margin:0 0 10px; color:#cde3d2; font-weight:800; letter-spacing:.1em; text-transform:uppercase; font-size:.72rem; }
.rec-hero h1 { max-width:780px; margin:0 0 17px; font:800 clamp(2.1rem,5vw,4rem)/1.04 Manrope,sans-serif; letter-spacing:-.045em; }
.rec-hero p:last-child { max-width:790px; margin:0; color:rgba(255,255,255,.76); line-height:1.75; }
.rec-section { padding:46px 0 80px; }
.rec-toolbar { display:flex; align-items:end; justify-content:space-between; gap:25px; margin-bottom:28px; padding:22px 24px; border:1px solid var(--line); border-radius:18px; background:#fff; }
.rec-toolbar strong,.rec-toolbar span { display:block; }
.rec-toolbar strong { margin-bottom:5px; font:800 1.08rem Manrope,sans-serif; }
.rec-toolbar span { color:var(--muted); font-size:.78rem; }
.rec-toolbar label { color:var(--muted); font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.07em; }
.rec-toolbar input { display:block; width:min(360px,40vw); min-height:44px; margin-top:7px; padding:0 14px; border:1px solid #ccd8ce; border-radius:11px; font:inherit; text-transform:none; letter-spacing:0; }
.rec-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.rec-card { overflow:hidden; display:flex; min-width:0; flex-direction:column; border:1px solid rgba(23,79,53,.12); border-radius:var(--radius); background:#fff; box-shadow:0 12px 30px rgba(16,40,27,.08); transition:transform .25s,box-shadow .25s; }
.rec-card:hover { transform:translateY(-4px); box-shadow:0 18px 42px rgba(16,40,27,.13); }
.rec-image { height:225px; display:block; border-bottom:2px solid var(--line); background:#fff; }
.rec-package-grid { display:grid; width:100%; height:100%; gap:2px; background:var(--line); }
.rec-package-1 { grid-template-columns:1fr; }
.rec-package-2 { grid-template-columns:repeat(2,1fr); }
.rec-package-3,.rec-package-4 { grid-template-columns:repeat(2,1fr); grid-template-rows:repeat(2,1fr); }
.rec-package-3 img:first-child { grid-row:1 / span 2; }
.rec-package-grid img { width:100%; height:100%; min-width:0; min-height:0; padding:10px; display:block; object-fit:contain; background:#fff; }
.rec-body { display:flex; flex:1; flex-direction:column; padding:22px; }
.rec-body > span { color:#237247; font-size:.68rem; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
.rec-body h2 { margin:9px 0 10px; font:800 1.04rem/1.34 Manrope,sans-serif; }
.rec-body h2 a { color:inherit; text-decoration:none; }
.rec-body p { margin:0 0 22px; color:var(--muted); font-size:.82rem; line-height:1.65; }
.rec-package-meta { display:flex; justify-content:space-between; gap:14px; margin:-5px 0 18px; padding:11px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); color:var(--forest); font-size:.78rem; }
.rec-package-meta strong { color:var(--ink); font-size:.88rem; }
.rec-link { margin-top:auto; color:var(--forest); text-decoration:none; font-size:.77rem; font-weight:850; }
.rec-link b { margin-left:6px; }
.rec-empty { padding:50px; border-radius:18px; background:#fff; color:var(--muted); text-align:center; }
footer { padding:28px 0; background:var(--forest-dark); color:rgba(255,255,255,.7); }
footer .rec-shell { display:flex; justify-content:space-between; gap:20px; }
footer a { color:#fff; text-decoration:none; font-weight:750; }
@media(max-width:900px) { .rec-header nav { display:none; } .rec-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:650px) { .rec-shell { width:min(100% - 28px,1180px); } .rec-header-inner { min-height:68px; } .rec-hero { padding:50px 0; } .rec-toolbar { align-items:stretch; flex-direction:column; } .rec-toolbar input { width:100%; } .rec-grid { grid-template-columns:1fr; } .rec-image { height:240px; } footer .rec-shell { flex-direction:column; } }
