/* Travel agency — dark hero + tours grid */
.hero--ink { position: relative; padding: var(--space-12) 0 var(--space-16); color: var(--warm-white); overflow: hidden; isolation: isolate; background: linear-gradient(135deg, #0E0E1B 0%, #1A1A2E 100%); }
.hero--ink .hero__cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: 0.45; }
.hero--ink::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 14, 27, 0.5), rgba(26, 26, 46, 0.88)); z-index: -1; }
.hero--ink .hero__inner { display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: center; text-align: center; }
@media (min-width: 768px) { .hero--ink .hero__inner { grid-template-columns: 1fr auto; text-align: left; gap: var(--space-8); } }
.hero__left { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
@media (min-width: 768px) { .hero__left { align-items: flex-start; } }
.hero--ink .hero__avatar { width: 110px; height: 110px; border-radius: var(--radius-full); box-shadow: 0 0 0 5px rgba(255, 252, 251, 0.12), 0 12px 36px rgba(0, 0, 0, 0.4); }
.hero--ink .hero__title { font-size: clamp(28px, 5vw, 44px); color: var(--warm-white); letter-spacing: -0.02em; }
.hero--ink .hero__tagline { color: rgba(255, 252, 251, 0.72); font-size: clamp(15px, 1.7vw, 17px); }
.hero--ink .hero__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }
.hero--ink .hero__status { background: rgba(255, 252, 251, 0.92); color: var(--mint-success); }

.content { padding: var(--space-10) 0 var(--space-12); }
.content__grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
.content__main { display: flex; flex-direction: column; gap: var(--space-10); }
.content__side { display: flex; flex-direction: column; gap: var(--space-4); }
@media (min-width: 960px) { .content { padding: var(--space-12) 0 var(--space-16); } .content__grid { grid-template-columns: minmax(0, 1fr) 340px; gap: var(--space-10); } .content__side { position: sticky; top: 100px; align-self: start; } }
.section-head { margin-bottom: var(--space-5); }
.section-head .section-title { margin-top: 4px; font-size: clamp(22px, 3vw, 26px); }

.tours-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .tours-grid { grid-template-columns: 1fr 1fr; } }
.tour { display: flex; flex-direction: column; width: 100%; text-align: left; background: var(--warm-white); border: 1px solid var(--soft-line); border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
.tour:hover { border-color: var(--honey-gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tour__thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, var(--honey-tint), #FCE0B2); }
.tour__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.tour:hover .tour__thumb img { transform: scale(1.05); }
.tour__badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 10.5px; padding: 3px 8px; letter-spacing: 0.04em; }
.tour__body { padding: var(--space-4); display: flex; flex-direction: column; gap: 4px; }
.tour__body h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.tour__foot { display: flex; justify-content: space-between; align-items: baseline; margin-top: var(--space-2); gap: var(--space-3); flex-wrap: wrap; }
.tour__price { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--honey-gold); }

.custom-cta { padding: var(--space-5); background: var(--honey-tint); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: var(--space-3); }
.custom-cta p { color: var(--hive-ink); font-size: 14.5px; line-height: 1.55; }
.custom-cta .btn { align-self: flex-start; }

.schedule-card { padding: var(--space-5); }
.step-list { list-style: none; padding: 0 0 0 50px; margin: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.step-list li { color: rgba(255, 252, 251, 0.78); font-size: 14px; }
.step-list strong { color: var(--honey-gold); font-family: var(--font-heading); }
.schedule-card__btn { margin-top: var(--space-3); }
.stripe-card { background: var(--light-stripe); border-color: transparent; padding: var(--space-5); }
