/* ── STEPS GRID ── */
.steps-grid {display:grid;grid-template-columns:repeat(4,1fr);gap:2px;background:rgba(10,10,10,.07)}
.step-cell {background:var(--chalk);padding:40px 32px;position:relative;transition:background var(--t)}
.step-cell:hover {background:var(--chalk-d)}
.step-num {font-family:'Cormorant Garamond',serif;font-size:4rem;font-weight:300;color:var(--sand);line-height:1;margin-bottom:16px;transition:color var(--t)}
.step-cell:hover .step-num {color:var(--sea)}
.step-cell h3 {font-family:'Cormorant Garamond',serif;font-size:1.25rem;font-weight:400;margin-bottom:10px;line-height:1.2}
.step-cell p {font-size:.84rem;line-height:1.68;color:rgba(10,10,10,.55)}
@media(max-width:860px){.steps-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.steps-grid{grid-template-columns:1fr}}

/* ── TOURS GRID ── */
.tours-grid {display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.tour-chip {background:#fff;border-radius:var(--r-md);padding:18px 16px;text-align:center;box-shadow:var(--sh-sm);border-bottom:3px solid var(--tide);transition:transform var(--ts),box-shadow var(--ts)}
.tour-chip:hover {transform:translateY(-4px);box-shadow:0 14px 40px rgba(10,10,10,.12)}
.tour-chip .tc-icon {font-size:1.6rem;margin-bottom:8px}
.tour-chip .tc-name {font-family:'Cormorant Garamond',serif;font-size:1rem;font-weight:400;color:var(--sea)}
@media(max-width:760px){.tours-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:460px){.tours-grid{grid-template-columns:1fr 1fr}}

/* ── INFO BAND ── */
.info-band {display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:rgba(10,10,10,.07)}
.info-cell {background:var(--sea);padding:36px 28px;transition:background var(--t)}
.info-cell:hover {background:var(--sea-m)}
.info-cell h4 {font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-weight:400;color:#fff;margin-bottom:8px}
.info-cell p {font-size:.82rem;line-height:1.65;color:rgba(255,255,255,.52)}
@media(max-width:600px){.info-band{grid-template-columns:1fr}}
