body{
margin:0;
font-family:Arial,sans-serif;
background:#f5f5f5;
color:#111;
line-height:1.6;
}

*{
box-sizing:border-box;
}

.wrap{
max-width:1150px;
margin:0 auto;
padding:24px;
}

/* HERO */

.hero{
padding:24px 24px 0;
}

.heroimage{
position:relative;
min-height:440px;
border-radius:28px;
overflow:hidden;
display:flex;
align-items:center;
border:1px solid #ddd;
box-shadow:0 12px 32px rgba(0,0,0,0.08);
background-position:center center;
background-size:cover;
background-repeat:no-repeat;
}

.herooverlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.25);
}

.herocard{
position:relative;
z-index:2;
max-width:720px;
margin:0 auto;
text-align:center;
padding:34px 40px;
border-radius:22px;
background:linear-gradient(
135deg,
rgba(255,255,255,0.88),
rgba(255,232,170,0.75)
);
backdrop-filter:blur(6px);
box-shadow:0 10px 28px rgba(0,0,0,0.15);
}

.kicker{
display:inline-block;
padding:6px 12px;
border:1px solid rgba(0,0,0,0.15);
border-radius:999px;
font-size:14px;
background:rgba(255,255,255,0.9);
font-weight:700;
}

h1{
font-size:46px;
margin:16px 0 12px;
line-height:1.15;
}

.intro{
color:#333;
font-size:18px;
margin:0;
}

.backlink{
display:inline-block;
margin-top:18px;
color:#111;
text-decoration:none;
font-weight:700;
}

.backlink:hover{
text-decoration:underline;
}

/* CONTENT */

.section{
background:white;
border:1px solid #ddd;
border-radius:24px;
padding:28px;
margin-top:36px;
}

.section h2{
margin:0 0 10px;
font-size:30px;
text-align:center;
}

.sectionintro{
max-width:760px;
margin:0 auto 28px;
text-align:center;
color:#555;
font-size:18px;
}

/* GUIDE GRID */

.guides{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:24px;
align-items:stretch;
}

.guidecard{
display:flex;
flex-direction:column;
height:100%;
background:#fff;
border:1px solid #ddd;
border-radius:22px;
overflow:hidden;
box-shadow:0 4px 14px rgba(0,0,0,0.05);
transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
text-decoration:none;
color:#111;
cursor:pointer;
}

.guidecard:hover{
transform:translateY(-6px);
box-shadow:0 18px 36px rgba(0,0,0,0.14);
border-color:#cfcfcf;
}

.cardimage{
width:100%;
height:220px;
object-fit:cover;
display:block;
background:#eee;
transition:transform .3s ease;
flex-shrink:0;
}

.guidecard:hover .cardimage{
transform:scale(1.03);
}

.cardcontent{
padding:22px;
display:flex;
flex-direction:column;
flex:1;
}

.guidecard h3{
margin:0 0 10px;
font-size:24px;
line-height:1.3;
}

.guidecard p{
margin:0;
color:#555;
font-size:16px;
}

.viewguide{
display:inline-block;
margin-top:auto;
padding-top:14px;
font-size:14px;
font-weight:700;
color:#ff9900;
transition:transform .2s ease,color .2s ease;
align-self:flex-start;
}

.guidecard:hover .viewguide{
transform:translateX(4px);
color:#e88900;
}

/* FOOTER */

.footer-links{
margin-top:40px;
text-align:center;
font-size:14px;
color:#555;
padding-bottom:20px;
}

.footer-links a{
color:#111;
text-decoration:none;
margin:0 10px;
}

.footer-links a:hover{
text-decoration:underline;
}

/* MOBILE */

@media(max-width:700px){

.hero{
padding:16px 16px 0;
}

.heroimage{
min-height:340px;
border-radius:22px;
}

.herocard{
padding:26px 24px;
}

h1{
font-size:34px;
}

.intro{
font-size:16px;
}

.section{
padding:22px;
}

.cardimage{
height:200px;
}

.cardcontent{
flex:1;
}

}
