/* Content pages (Contact / Reviews / Blog) — works alongside home.css */

/* ===== PAGE HERO ===== */
.page-hero{position:relative;overflow:hidden;padding:60px 0 50px;background:radial-gradient(820px 360px at 50% -20%,rgba(225,6,0,.16),transparent 60%),var(--bg-2);border-bottom:1px solid var(--line);}
.page-hero .wrap{position:relative;z-index:1;}
.breadcrumb{font-size:.78rem;color:var(--muted);margin-bottom:16px;font-family:'Space Mono',monospace;}
.breadcrumb a{color:var(--muted);transition:.15s;}
.breadcrumb a:hover{color:var(--yellow);}
.breadcrumb .sep{margin:0 7px;color:#3c3f43;}
.page-hero h1{font-size:clamp(2.2rem,6vw,3.6rem);color:#fff;line-height:1;}
.page-hero p{color:var(--muted);font-size:1.04rem;max-width:660px;margin-top:12px;}

.page{padding:56px 0 76px;}
.section-title{font-size:clamp(1.6rem,4vw,2.2rem);color:#fff;margin-bottom:10px;}

/* ===== CONTACT ===== */
.contact-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:26px;align-items:start;}
.contact-card{background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:28px;margin-bottom:20px;}
.contact-card h2{font-size:1.3rem;color:#fff;margin-bottom:14px;}
.contact-line{display:flex;align-items:center;gap:13px;padding:13px 0;border-bottom:1px solid var(--line);}
.contact-line:last-child{border-bottom:none;}
.contact-line .ico{width:40px;height:40px;border-radius:10px;background:rgba(225,6,0,.14);color:var(--red);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.contact-line .ico svg{width:19px;height:19px;}
.contact-line .txt .lbl{font-family:'Rajdhani',sans-serif;font-weight:700;color:var(--muted);font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;display:block;}
.contact-line .txt .val{color:#fff;font-weight:600;font-size:.98rem;}
.contact-line a.val:hover{color:var(--yellow);}
.map-wrap{border-radius:14px;overflow:hidden;border:1px solid var(--line);}
.map-wrap iframe{display:block;width:100%;height:440px;border:0;}
.map-open{display:inline-flex;align-items:center;gap:8px;margin-top:14px;color:var(--yellow);font-weight:600;font-size:.88rem;}
.map-open:hover{color:var(--red);}

/* ===== REVIEWS ===== */
.rating-summary{display:flex;align-items:center;gap:18px;background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:22px 28px;margin-bottom:26px;flex-wrap:wrap;}
.rating-summary .big{font-family:'Anton',sans-serif;font-size:3rem;color:#fff;line-height:1;}
.rating-summary .stars{color:var(--yellow);letter-spacing:3px;font-size:1.2rem;}
.rating-summary .note{color:var(--muted);font-size:.86rem;}
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.review-card{background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:26px;display:flex;flex-direction:column;}
.review-card .stars{color:var(--yellow);letter-spacing:2px;margin-bottom:14px;font-size:.95rem;}
.review-card blockquote{color:#e8eaec;font-size:.95rem;line-height:1.65;flex:1;margin:0 0 18px;font-style:italic;}
.review-card .who{display:flex;align-items:center;gap:11px;}
.review-card .who .avatar{width:40px;height:40px;border-radius:50%;background:var(--red);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-family:'Rajdhani',sans-serif;font-size:1rem;}
.review-card .who .nm{font-weight:600;color:#fff;font-size:.92rem;display:block;}
.review-card .who .meta{color:var(--muted);font-size:.74rem;}

/* ===== BLOG ===== */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.blog-card{background:var(--surface);border:1px solid var(--line);border-radius:14px;overflow:hidden;display:flex;flex-direction:column;transition:.18s;}
.blog-card:hover{border-color:var(--red);transform:translateY(-5px);}
.blog-card .thumb{height:130px;background:linear-gradient(135deg,rgba(225,6,0,.30),rgba(255,212,0,.12));display:flex;align-items:center;justify-content:center;font-family:'Anton',sans-serif;font-size:2.1rem;color:rgba(255,255,255,.28);letter-spacing:.04em;}
.blog-card .body{padding:20px;display:flex;flex-direction:column;flex:1;}
.blog-card .cat{font-family:'Rajdhani',sans-serif;font-weight:700;color:var(--red);font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;margin-bottom:9px;}
.blog-card h3{font-size:1.04rem;color:#fff;line-height:1.32;margin-bottom:9px;}
.blog-card h3 a:hover{color:var(--yellow);}
.blog-card p{color:var(--muted);font-size:.85rem;line-height:1.55;flex:1;}
.blog-card .more{color:var(--red);font-weight:600;font-size:.82rem;margin-top:14px;display:inline-flex;align-items:center;gap:5px;}

/* ===== ARTICLE ===== */
.article{max-width:760px;margin:0 auto;}
.article-meta{display:flex;gap:16px;color:var(--muted);font-size:.8rem;font-family:'Space Mono',monospace;margin-bottom:26px;flex-wrap:wrap;}
.prose{color:#cfd3d8;font-size:1.02rem;line-height:1.78;}
.prose p{margin-bottom:18px;}
.prose h2{font-size:1.4rem;margin:36px 0 14px;color:#fff;font-family:'Anton',sans-serif;text-transform:uppercase;letter-spacing:.01em;font-weight:400;}
.prose ul,.prose ol{margin:0 0 18px 22px;}
.prose li{margin-bottom:8px;}
.prose a{color:var(--red);border-bottom:1px solid rgba(225,6,0,.4);}
.prose a:hover{color:var(--yellow);border-color:var(--yellow);}
.prose .tip{background:rgba(255,212,0,.07);border-left:3px solid var(--yellow);padding:15px 18px;border-radius:8px;color:#e8eaec;font-size:.94rem;margin:22px 0;}
.cta-box{background:var(--surface);border:1px solid var(--line-2);border-radius:14px;padding:30px;text-align:center;margin-top:40px;}
.cta-box h3{font-size:1.35rem;color:#fff;margin-bottom:8px;}
.cta-box p{color:var(--muted);font-size:.94rem;margin-bottom:20px;}

.btn-red{display:inline-block;background:var(--red);color:#fff;font-family:'Rajdhani',sans-serif;font-weight:700;padding:12px 26px;border-radius:8px;font-size:.96rem;transition:.15s;}
.btn-red:hover{background:var(--red-2);}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .contact-grid{grid-template-columns:1fr;}
  .review-grid{grid-template-columns:1fr;}
  .blog-grid{grid-template-columns:1fr;}
  .map-wrap iframe{height:320px;}
}
